Skip to content

Commit 6c20bf6

Browse files
author
Ire Aderinokun
committed
added tips section
1 parent 2a4dd01 commit 6c20bf6

File tree

7 files changed

+19
-9
lines changed

7 files changed

+19
-9
lines changed

.DS_Store

-8 KB
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
gulpfile.js
33
sass
4+
assets

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# WTF Opera Mini?!
1+
# Opera Mini Tips (previously WTF Opera Mini?!)
22

33

44
![Stat Counter Browser Statistics for Nigeria](images/Nigeria.png)
@@ -7,12 +7,12 @@ According to [StatCounter](http://gs.statcounter.com/#mobile_browser-NG-monthly-
77

88
This is a huge problem because Opera Mini today is basically like IE 8. It has terrible support for a lot of development features we take for granted.
99

10-
[WTF Opera Mini?!](http://wtfoperamini.com) is a list of all the unsupported or partially supported development features, and some crowsourced workarounds for them.
10+
[Opera Mini Tips](ttp://operamini.tips) is a list of all the unsupported or partially supported development features, and some crowsourced workarounds for them.
1111

1212
Although this is directed at Opera Mini, this can be a useful resource for anyone practicing progressive enhancement or graceful degradation.
1313

1414

15-
**[Visit the Website](http://wtfoperamini.com)**
15+
**[Visit the Website](http://operamini.tips)**
1616

1717

1818
## Contribute

images/.DS_Store

-6 KB
Binary file not shown.

index.html

+5-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Opera Mini Tips (WTF Opera Mini?!)</title>
66

77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<meta name="description" content="">
8+
<meta name="description" content="OperaMini.Tips! Tips on developing for Opera Mini, including features not supported by the browser and some crowsourced workarounds for them. Created by Ire Aderinokun.">
99

1010
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,500,600|Source+Sans+Pro:400,300,600,700,400italic' rel='stylesheet' type='text/css'>
1111

@@ -47,7 +47,7 @@
4747
</p>
4848
<br>
4949
<p>
50-
<a href="#/">Feature List</a> | <a href="#/about">About</a>
50+
<a href="#/">Feature List</a> | <a href="#/tips">Tips</a> | <a href="#/about">About</a>
5151
</p>
5252
</div>
5353

@@ -56,10 +56,9 @@
5656
<div class="social-buttons">
5757
<a class="twitter-share-button"
5858
href="https://twitter.com/share"
59-
data-text="OperaMini.tips! Features not supported by Opera Mini and some crowsourced workarounds for them"
60-
data-url="http://wtfoperamini.com"
61-
data-via="ireaderinokun"
62-
data-related="ireaderinokun"> Tweet </a>
59+
data-text="OperaMini.Tips! Tips on dev for Opera Mini, inc features not supported by the browser & workarounds"
60+
data-via="operaminitips"
61+
data-related="operaminitips"> Tweet </a>
6362
<script>
6463
window.twttr=(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],t=window.twttr||{};if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);t._e=[];t.ready=function(f){t._e.push(f);};return t;}(document,"script","twitter-wjs"));
6564
</script>

js/app.js

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ app.config(function($routeProvider) {
1414
controller: 'MainController',
1515
templateUrl: 'views/about.html'
1616
})
17+
.when('/tips', {
18+
controller: 'MainController',
19+
templateUrl: 'views/tips.html'
20+
})
1721
.when('/:featureKey', {
1822
controller: 'FeatureController',
1923
templateUrl: 'views/feature.html'

views/tips.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<h2>Tips</h2>
2+
3+
<ul class="bullet-list">
4+
<li><a href="https://gist.github.com/ireade/10fe4b3c1e1caa9751a3">Detect if Opera Mini is in Extreme Savings Mode or the regular High Savings Mode</a></li>
5+
<li>Flexbox is supported!</li>
6+
</ul>

0 commit comments

Comments
 (0)