mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
FIX: enter key in login form works again
This commit is contained in:
parent
0ece195723
commit
3a6ba907d9
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,9 @@ Discourse.LoginView = Discourse.ModalBodyView.extend({
|
|||
Em.run.schedule('afterRender', function() {
|
||||
$('#login-account-password, #login-account-name').keydown(function(e) {
|
||||
if (e.keyCode === 13) {
|
||||
loginController.login();
|
||||
if (!loginController.get('loginDisabled')) {
|
||||
loginController.send('login');
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue