summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/account
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2017-02-24 02:06:58 +0100
committerJules Laplace <jules@okfoc.us>2017-02-24 02:06:58 +0100
commitdb9d93526b951a7660925cd2e721ab2588e4ca45 (patch)
treed5d3292c44ecc7ce98c3edb9d7137f8a1ca8d5a8 /StoneIsland/www/js/lib/account
parent0054cc1463731fc7045016d81dd6342e46c413ea (diff)
change go button to return
Diffstat (limited to 'StoneIsland/www/js/lib/account')
-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
4 files changed, 4 insertions, 4 deletions
diff --git a/StoneIsland/www/js/lib/account/PaymentView.js b/StoneIsland/www/js/lib/account/PaymentView.js
index f773c05b..796ea188 100755
--- a/StoneIsland/www/js/lib/account/PaymentView.js
+++ b/StoneIsland/www/js/lib/account/PaymentView.js
@@ -25,7 +25,7 @@ var PaymentView = FormView.extend({
},
initialize: function(){
- this.$form = this.$("form")
+ this.$form = this.$(".form")
this.$msg = this.$(".msg")
this.address = new AddressView ({ parent: this, checkPhone: false })
this.cc = new CreditCardView ({ parent: this })
diff --git a/StoneIsland/www/js/lib/account/ProfileView.js b/StoneIsland/www/js/lib/account/ProfileView.js
index df6bc865..98dba019 100755
--- a/StoneIsland/www/js/lib/account/ProfileView.js
+++ b/StoneIsland/www/js/lib/account/ProfileView.js
@@ -8,7 +8,7 @@ var ProfileView = FormView.extend({
action: sdk.account.update,
initialize: function(){
- this.$form = this.$("form")
+ this.$form = this.$(".form")
this.$msg = this.$(".msg")
this.scroller = new IScroll('#profile', app.iscroll_options)
},
diff --git a/StoneIsland/www/js/lib/account/SettingsView.js b/StoneIsland/www/js/lib/account/SettingsView.js
index f6eae13c..90ace549 100755
--- a/StoneIsland/www/js/lib/account/SettingsView.js
+++ b/StoneIsland/www/js/lib/account/SettingsView.js
@@ -8,7 +8,7 @@ var SettingsView = FormView.extend({
},
initialize: function(){
- this.$form = this.$("form")
+ this.$form = this.$(".form")
this.$msg = this.$(".msg")
this.$store = this.$("[name=store]")
this.$hub = this.$("[name=hub]")
diff --git a/StoneIsland/www/js/lib/account/ShippingView.js b/StoneIsland/www/js/lib/account/ShippingView.js
index 71cd9eef..67a1cfec 100755
--- a/StoneIsland/www/js/lib/account/ShippingView.js
+++ b/StoneIsland/www/js/lib/account/ShippingView.js
@@ -24,7 +24,7 @@ var ShippingView = FormView.extend({
},
initialize: function(){
- this.$form = this.$("form")
+ this.$form = this.$(".form")
this.$msg = this.$(".msg")
this.address = new AddressView ({ parent: this })
this.scroller = new IScroll('#shipping', app.iscroll_options)