summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/nav/NavView.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/js/lib/nav/NavView.js')
-rwxr-xr-xStoneIsland/www/js/lib/nav/NavView.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/StoneIsland/www/js/lib/nav/NavView.js b/StoneIsland/www/js/lib/nav/NavView.js
index 1655b7f8..a9a1938e 100755
--- a/StoneIsland/www/js/lib/nav/NavView.js
+++ b/StoneIsland/www/js/lib/nav/NavView.js
@@ -37,6 +37,8 @@ var NavView = View.extend({
"click .insta": "insta",
"click .tw": "tw",
"click .yt": "yt",
+
+ "click .close": "close",
},
initialize: function(){
@@ -161,7 +163,7 @@ var NavView = View.extend({
fb: function(){
- window.open(is_ios ? "facebook://profile/231623463406" : "https://www.facebook.com/StoneIsland", '_system')
+ window.open("https://www.facebook.com/StoneIsland", '_system')
},
insta: function(){
window.open("https://instagram.com/stoneisland_official", '_system')
@@ -173,4 +175,8 @@ var NavView = View.extend({
window.open("https://www.youtube.com/user/StoneIslandOfficial", '_system')
},
+ close: function(){
+ this.hide()
+ },
+
})