summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-12-11 01:54:35 -0600
committerJules Laplace <jules@okfoc.us>2015-12-11 01:54:35 -0600
commit20739f5f572e043aec1a4b25de63231c4c176ffe (patch)
tree2d0e3809aea69297d22651131275ba1989b76e11 /StoneIsland/www/js/lib/account
parent13a66557666db25dd67bdc3eb0e52b11292045d1 (diff)
is_android check for touch events, rebuild ios
Diffstat (limited to 'StoneIsland/www/js/lib/account')
-rwxr-xr-xStoneIsland/www/js/lib/account/OrdersView.js4
-rwxr-xr-xStoneIsland/www/js/lib/account/PaymentView.js2
-rwxr-xr-xStoneIsland/www/js/lib/account/ProfileView.js2
-rwxr-xr-xStoneIsland/www/js/lib/account/SettingsView.js2
-rwxr-xr-xStoneIsland/www/js/lib/account/ShippingView.js2
5 files changed, 6 insertions, 6 deletions
diff --git a/StoneIsland/www/js/lib/account/OrdersView.js b/StoneIsland/www/js/lib/account/OrdersView.js
index e51676e0..a1b83767 100755
--- a/StoneIsland/www/js/lib/account/OrdersView.js
+++ b/StoneIsland/www/js/lib/account/OrdersView.js
@@ -8,8 +8,8 @@ var OrdersView = ScrollableView.extend({
item_template: $("#orders .item_template").html(),
events: {
- "touchstart .back": "back",
- "touchstart .item": "load_single",
+ "click .back": "back",
+ "click .item": "load_single",
},
initialize: function(){
diff --git a/StoneIsland/www/js/lib/account/PaymentView.js b/StoneIsland/www/js/lib/account/PaymentView.js
index 03dc8cbf..8b49ed1d 100755
--- a/StoneIsland/www/js/lib/account/PaymentView.js
+++ b/StoneIsland/www/js/lib/account/PaymentView.js
@@ -34,7 +34,7 @@ var PaymentView = FormView.extend({
show: function(){
if (! auth.logged_in()) { return app.router.go("intro") }
- app.footer.show("SAVE", "CANCEL")
+ app.footer.show("SAVE")
document.body.className = "payment"
this.deferScrollToTop()
// this.preload()
diff --git a/StoneIsland/www/js/lib/account/ProfileView.js b/StoneIsland/www/js/lib/account/ProfileView.js
index ed2f3536..f370c055 100755
--- a/StoneIsland/www/js/lib/account/ProfileView.js
+++ b/StoneIsland/www/js/lib/account/ProfileView.js
@@ -15,7 +15,7 @@ var ProfileView = FormView.extend({
show: function(){
if (! auth.logged_in()) { return app.router.go("intro") }
- app.footer.show("SAVE", "CANCEL")
+ app.footer.show("SAVE")
document.body.className = "profile"
this.preload(auth.user)
this.deferScrollToTop()
diff --git a/StoneIsland/www/js/lib/account/SettingsView.js b/StoneIsland/www/js/lib/account/SettingsView.js
index 7f96bb88..0de80048 100755
--- a/StoneIsland/www/js/lib/account/SettingsView.js
+++ b/StoneIsland/www/js/lib/account/SettingsView.js
@@ -13,7 +13,7 @@ var SettingsView = FormView.extend({
show: function(){
if (! auth.logged_in()) { return app.router.go("intro") }
- app.footer.show("SAVE", "CANCEL")
+ app.footer.show("SAVE")
document.body.className = "settings"
this.deferScrollToTop()
},
diff --git a/StoneIsland/www/js/lib/account/ShippingView.js b/StoneIsland/www/js/lib/account/ShippingView.js
index 39baf2aa..0bf88025 100755
--- a/StoneIsland/www/js/lib/account/ShippingView.js
+++ b/StoneIsland/www/js/lib/account/ShippingView.js
@@ -33,7 +33,7 @@ var ShippingView = FormView.extend({
show: function(){
if (! auth.logged_in()) { return app.router.go("intro") }
// this.preload( this.data || this.test_data )
- app.footer.show("SAVE", "CANCEL")
+ app.footer.show("SAVE")
document.body.className = "shipping"
this.deferScrollToTop()
},