Skip to content
Snippets Groups Projects
Commit bb1ffb24 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Merge branch 'ctrl_c_email_field' into dev

parents 9569dc04 3665526e
No related branches found
No related tags found
No related merge requests found
......@@ -209,7 +209,15 @@
}
},
"#email keyup": enterEmailState,
"#email keyup": function(el, event) {
// Fixes a bug in IE9 that does not pick up the input event on
// a backspace.
if(event.which === 8) {
enterEmailState.call(this, el);
}
},
// This is part of the HTML5 spec
"#email input": enterEmailState,
"#forgotPassword click": forgotPasswordState,
"#cancel_forgot_password click": cancelForgotPassword
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment