mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix login configuration dialog in IE8.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user