summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xStoneIsland/platforms/ios/www/css/nav.css2
-rwxr-xr-xStoneIsland/platforms/ios/www/index.html1
-rwxr-xr-xStoneIsland/platforms/ios/www/js/lib/etc/push.js22
-rwxr-xr-xStoneIsland/platforms/ios/www/js/lib/nav/NavView.js4
-rwxr-xr-xStoneIsland/www/css/nav.css2
-rwxr-xr-xStoneIsland/www/index.html1
-rwxr-xr-xStoneIsland/www/js/lib/nav/NavView.js4
7 files changed, 18 insertions, 18 deletions
diff --git a/StoneIsland/platforms/ios/www/css/nav.css b/StoneIsland/platforms/ios/www/css/nav.css
index 15b7f004..c769dabd 100755
--- a/StoneIsland/platforms/ios/www/css/nav.css
+++ b/StoneIsland/platforms/ios/www/css/nav.css
@@ -93,7 +93,7 @@
#nav .social span {
display: block;
float: left;
- width: 82px;
+ width: 61px;
border-left: 1px solid #ddd;
color: #bbb;
font-size: 18px;
diff --git a/StoneIsland/platforms/ios/www/index.html b/StoneIsland/platforms/ios/www/index.html
index be520d2c..73eed267 100755
--- a/StoneIsland/platforms/ios/www/index.html
+++ b/StoneIsland/platforms/ios/www/index.html
@@ -90,6 +90,7 @@
<span class="fb ion-social-facebook"></span>
<span class="insta ion-social-instagram-outline"></span>
<span class="tw ion-social-twitter"></span>
+ <span class="yt ion-social-youtube"></span>
</span>
</div>
diff --git a/StoneIsland/platforms/ios/www/js/lib/etc/push.js b/StoneIsland/platforms/ios/www/js/lib/etc/push.js
index 9260ca14..9a921059 100755
--- a/StoneIsland/platforms/ios/www/js/lib/etc/push.js
+++ b/StoneIsland/platforms/ios/www/js/lib/etc/push.js
@@ -35,22 +35,12 @@ var push = (function(){
cb && cb()
}, push.error)
}
- push.did_subscribe = function(){
- // parsePlugin.getInstallationId(function(id) {
- // var install_data = {
- // installation_id: id,
- // channels: ['SampleChannel']
- // }
- // }, push.error)
- }
- push.did_unsubscribe = function(){
- // parsePlugin.getInstallationId(function(id) {
- // var install_data = {
- // installation_id: id,
- // channels: ['SampleChannel']
- // }
- // }, push.error)
- }
+ // parsePlugin.getInstallationId(function(id) {
+ // var install_data = {
+ // installation_id: id,
+ // channels: ['SampleChannel']
+ // }
+ // }, push.error)
push.got_push_notification = function(push_obj) {
alert('We received this push notification: ' + JSON.stringify(push_obj));
app.collection.loaded = false
diff --git a/StoneIsland/platforms/ios/www/js/lib/nav/NavView.js b/StoneIsland/platforms/ios/www/js/lib/nav/NavView.js
index 704aaa34..71314559 100755
--- a/StoneIsland/platforms/ios/www/js/lib/nav/NavView.js
+++ b/StoneIsland/platforms/ios/www/js/lib/nav/NavView.js
@@ -34,6 +34,7 @@ var NavView = View.extend({
"click .fb": "fb",
"click .insta": "insta",
"click .tw": "tw",
+ "click .yt": "yt",
},
initialize: function(){
@@ -153,5 +154,8 @@ var NavView = View.extend({
tw: function(){
window.open("https://twitter.com/stoneisland", '_system')
},
+ yt: function(){
+ window.open("https://www.youtube.com/user/StoneIslandOfficial", '_system')
+ },
})
diff --git a/StoneIsland/www/css/nav.css b/StoneIsland/www/css/nav.css
index 15b7f004..c769dabd 100755
--- a/StoneIsland/www/css/nav.css
+++ b/StoneIsland/www/css/nav.css
@@ -93,7 +93,7 @@
#nav .social span {
display: block;
float: left;
- width: 82px;
+ width: 61px;
border-left: 1px solid #ddd;
color: #bbb;
font-size: 18px;
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html
index be520d2c..73eed267 100755
--- a/StoneIsland/www/index.html
+++ b/StoneIsland/www/index.html
@@ -90,6 +90,7 @@
<span class="fb ion-social-facebook"></span>
<span class="insta ion-social-instagram-outline"></span>
<span class="tw ion-social-twitter"></span>
+ <span class="yt ion-social-youtube"></span>
</span>
</div>
diff --git a/StoneIsland/www/js/lib/nav/NavView.js b/StoneIsland/www/js/lib/nav/NavView.js
index 704aaa34..71314559 100755
--- a/StoneIsland/www/js/lib/nav/NavView.js
+++ b/StoneIsland/www/js/lib/nav/NavView.js
@@ -34,6 +34,7 @@ var NavView = View.extend({
"click .fb": "fb",
"click .insta": "insta",
"click .tw": "tw",
+ "click .yt": "yt",
},
initialize: function(){
@@ -153,5 +154,8 @@ var NavView = View.extend({
tw: function(){
window.open("https://twitter.com/stoneisland", '_system')
},
+ yt: function(){
+ window.open("https://www.youtube.com/user/StoneIslandOfficial", '_system')
+ },
})