diff options
| author | Jules Laplace <jules@okfoc.us> | 2016-01-20 23:04:19 +0100 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2016-01-20 23:04:19 +0100 |
| commit | 0a6a76b07644f38b2599a6bb0c462e82cdecbf8a (patch) | |
| tree | 74f9659f91842ce49e86a4f8cc864a83ec92e8d9 /StoneIsland/www/js/lib | |
| parent | f47c0196699eed49c6dbc03c857fe1e4368f2b54 (diff) | |
build
Diffstat (limited to 'StoneIsland/www/js/lib')
| -rwxr-xr-x | StoneIsland/www/js/lib/etc/geo.js | 2 | ||||
| -rwxr-xr-x | StoneIsland/www/js/lib/nav/NavView.js | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/StoneIsland/www/js/lib/etc/geo.js b/StoneIsland/www/js/lib/etc/geo.js index 5af9ecfd..885a1c6c 100755 --- a/StoneIsland/www/js/lib/etc/geo.js +++ b/StoneIsland/www/js/lib/etc/geo.js @@ -10,7 +10,7 @@ var geo = (function(){ geo.success = function(position){ var lat_str = as_degrees( position.coords.latitude || 40.99167, "N", "S" ) - var lng_str = as_degrees( position.coords.longitude || -74.07944, "W", "E" ) + var lng_str = as_degrees( position.coords.longitude || -74.07944, "E", "W" ) $(".latlng").html( lat_str + " " + lng_str ) geo.done() } diff --git a/StoneIsland/www/js/lib/nav/NavView.js b/StoneIsland/www/js/lib/nav/NavView.js index fc373858..f3818b7f 100755 --- a/StoneIsland/www/js/lib/nav/NavView.js +++ b/StoneIsland/www/js/lib/nav/NavView.js @@ -134,7 +134,8 @@ var NavView = View.extend({ this.hide() app.router.go("page/terms") }, - care: function(){ + care: function(e){ + e.preventDefault() window.open("http://www.stoneisland.com/localize.asp?tskay=4036416C&page=help/home&deviceYeti=smartphone", '_system') }, |
