Skip to content
Snippets Groups Projects
Commit 2063a1c5 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

Merge pull request #1729 from mozilla/issue_1376_ie_submit

Fix IE8 not submitting the password field on the enter key.
parents 11cf9885 e2fac373
No related branches found
No related tags found
No related merge requests found
...@@ -2,5 +2,7 @@ ...@@ -2,5 +2,7 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this - License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. --> - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<input id="templateInput" type="text" value="" /> <form>
<input id="templateInput" type="text" value="" />
</form>
...@@ -15,6 +15,16 @@ BrowserID.Modules.PageModule = (function() { ...@@ -15,6 +15,16 @@ BrowserID.Modules.PageModule = (function() {
cancelEvent = helpers.cancelEvent, cancelEvent = helpers.cancelEvent,
mediator = bid.Mediator; mediator = bid.Mediator;
function onKeypress(event) {
if (event.which === 13) {
// IE8 does not trigger the submit event when hitting enter. Submit the
// form if the key press was an enter and prevent the default action so
// the form is not submitted twice.
event.preventDefault();
this.submit();
}
}
function onSubmit() { function onSubmit() {
if (!dom.hasClass("body", "submit_disabled") && this.validate()) { if (!dom.hasClass("body", "submit_disabled") && this.validate()) {
this.submit(); this.submit();
...@@ -59,6 +69,7 @@ BrowserID.Modules.PageModule = (function() { ...@@ -59,6 +69,7 @@ BrowserID.Modules.PageModule = (function() {
self.options = options || {}; self.options = options || {};
self.bind("form", "submit", cancelEvent(onSubmit)); self.bind("form", "submit", cancelEvent(onSubmit));
self.bind("input", "keypress", onKeypress);
}, },
stop: function() { stop: function() {
......
...@@ -198,6 +198,35 @@ ...@@ -198,6 +198,35 @@
$("body").removeClass("submit_disabled"); $("body").removeClass("submit_disabled");
controller.onSubmit(); controller.onSubmit();
equal(submitCalled, true, "submit permitted to complete"); equal(submitCalled, true, "submit permitted to complete");
}) });
test("form is submitted once 'enter keypress' event", function() {
createController();
controller.renderDialog("test_template_with_input", {
title: "Test title",
message: "Test message"
});
controller.start();
var submitCalled = 0;
controller.submit = function() {
submitCalled++;
};
// synthesize the entire series of key* events so we replicate the behavior
// of keyboard interaction.
var e = jQuery.Event("keydown", { keyCode: 13, which: 13 });
$("#templateInput").trigger(e);
var e = jQuery.Event("keyup", { keyCode: 13, which: 13 });
$("#templateInput").trigger(e);
var e = jQuery.Event("keypress", { keyCode: 13, which: 13 });
$("#templateInput").trigger(e);
equal(submitCalled, 1, "submit called a single time");
});
}()); }());
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