We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4db06e commit 8f3061fCopy full SHA for 8f3061f
src/directives/public/model/text.js
@@ -32,7 +32,11 @@ module.exports = {
32
// in IE11 the "compositionend" event fires AFTER
33
// the "input" event, so the input handler is blocked
34
// at the end... have to call it here.
35
- self.listener()
+ //
36
+ // #1327: in lazy mode this is unecessary.
37
+ if (!lazy) {
38
+ self.listener()
39
+ }
40
})
41
}
42
0 commit comments