summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/android/assets/www/js/lib/auth
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/android/assets/www/js/lib/auth')
-rwxr-xr-xStoneIsland/platforms/android/assets/www/js/lib/auth/LoginView.js4
-rwxr-xr-xStoneIsland/platforms/android/assets/www/js/lib/auth/SignupView.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/StoneIsland/platforms/android/assets/www/js/lib/auth/LoginView.js b/StoneIsland/platforms/android/assets/www/js/lib/auth/LoginView.js
index f96d1e44..8a002632 100755
--- a/StoneIsland/platforms/android/assets/www/js/lib/auth/LoginView.js
+++ b/StoneIsland/platforms/android/assets/www/js/lib/auth/LoginView.js
@@ -5,7 +5,7 @@ var LoginView = FormView.extend({
action: sdk.account.login,
events: {
- "touchstart .newuser": "new_user",
+ "click .newuser": "new_user",
"submit form": "save",
},
@@ -21,7 +21,7 @@ var LoginView = FormView.extend({
return
}
var msg = "* Your personal and payment<br>information will always remain private"
- app.footer.show("SUBMIT", "CANCEL")
+ app.footer.show("SUBMIT")
this.$form.get(0).reset()
this.$msg.html(msg)
document.body.className = "login"
diff --git a/StoneIsland/platforms/android/assets/www/js/lib/auth/SignupView.js b/StoneIsland/platforms/android/assets/www/js/lib/auth/SignupView.js
index 19c07c32..ff5fa6bb 100755
--- a/StoneIsland/platforms/android/assets/www/js/lib/auth/SignupView.js
+++ b/StoneIsland/platforms/android/assets/www/js/lib/auth/SignupView.js
@@ -20,7 +20,7 @@ var SignupView = FormView.extend({
*/
events: {
- "touchstart .privacy-msg": "privacy_link",
+ "click .privacy-msg": "privacy_link",
"submit form": "save",
},
@@ -36,7 +36,7 @@ var SignupView = FormView.extend({
return
}
var msg = "* Your personal and payment<br>information will always remain private"
- app.footer.show("SUBMIT", "CANCEL")
+ app.footer.show("SUBMIT")
this.$form.get(0).reset()
this.$msg.html(msg)
document.body.className = "signup"