diff options
| author | Jules Laplace <jules@okfoc.us> | 2017-02-24 02:06:58 +0100 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2017-02-24 02:06:58 +0100 |
| commit | db9d93526b951a7660925cd2e721ab2588e4ca45 (patch) | |
| tree | d5d3292c44ecc7ce98c3edb9d7137f8a1ca8d5a8 /StoneIsland/www/js/lib/auth/LoginView.js | |
| parent | 0054cc1463731fc7045016d81dd6342e46c413ea (diff) | |
change go button to return
Diffstat (limited to 'StoneIsland/www/js/lib/auth/LoginView.js')
| -rwxr-xr-x | StoneIsland/www/js/lib/auth/LoginView.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/StoneIsland/www/js/lib/auth/LoginView.js b/StoneIsland/www/js/lib/auth/LoginView.js index d7968c22..aeb15d1d 100755 --- a/StoneIsland/www/js/lib/auth/LoginView.js +++ b/StoneIsland/www/js/lib/auth/LoginView.js @@ -11,7 +11,7 @@ var LoginView = FormView.extend({ }, initialize: function(){ - this.$form = this.$("form") + this.$form = this.$(".form") this.$msg = this.$(".msg") this.scroller = new IScroll('#login', app.iscroll_options) }, @@ -23,7 +23,7 @@ var LoginView = FormView.extend({ } var msg = "* Your personal and payment<br>information will always remain private" app.footer.show("SUBMIT") - this.$form.get(0).reset() + this.$("input").val("") this.$msg.html(msg) document.body.className = "login" }, |
