summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/lib/account
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/ios/www/js/lib/account')
-rwxr-xr-xStoneIsland/platforms/ios/www/js/lib/account/PaymentView.js2
-rwxr-xr-xStoneIsland/platforms/ios/www/js/lib/account/ProfileView.js2
-rwxr-xr-xStoneIsland/platforms/ios/www/js/lib/account/SettingsView.js2
-rwxr-xr-xStoneIsland/platforms/ios/www/js/lib/account/ShippingView.js2
4 files changed, 4 insertions, 4 deletions
diff --git a/StoneIsland/platforms/ios/www/js/lib/account/PaymentView.js b/StoneIsland/platforms/ios/www/js/lib/account/PaymentView.js
index 03dc8cbf..8b49ed1d 100755
--- a/StoneIsland/platforms/ios/www/js/lib/account/PaymentView.js
+++ b/StoneIsland/platforms/ios/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/platforms/ios/www/js/lib/account/ProfileView.js b/StoneIsland/platforms/ios/www/js/lib/account/ProfileView.js
index ed2f3536..f370c055 100755
--- a/StoneIsland/platforms/ios/www/js/lib/account/ProfileView.js
+++ b/StoneIsland/platforms/ios/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/platforms/ios/www/js/lib/account/SettingsView.js b/StoneIsland/platforms/ios/www/js/lib/account/SettingsView.js
index 7f96bb88..0de80048 100755
--- a/StoneIsland/platforms/ios/www/js/lib/account/SettingsView.js
+++ b/StoneIsland/platforms/ios/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/platforms/ios/www/js/lib/account/ShippingView.js b/StoneIsland/platforms/ios/www/js/lib/account/ShippingView.js
index 39baf2aa..0bf88025 100755
--- a/StoneIsland/platforms/ios/www/js/lib/account/ShippingView.js
+++ b/StoneIsland/platforms/ios/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()
},