Fix login configuration dialog in IE8.

This commit is contained in:
David Glasser
2012-10-16 18:53:29 -07:00
parent 5e3f00c084
commit 4dfb860151

View File

@@ -177,7 +177,10 @@
});
}
},
'input': function (event) {
// IE8 doesn't support the 'input' event, so we'll run this on the keyup as
// well. (Keeping the 'input' event means that this also fires when you use
// the mouse to change the contents of the field, eg 'Cut' menu item.)
'input, keyup input': function (event) {
// if the event fired on one of the configuration input fields,
// check whether we should enable the 'save configuration' button
if (event.target.id.indexOf('configure-login-service-dialog') === 0)