Skip to content

Commit a123091

Browse files
committed
fix(input): patched input cjk binding bug on ie11 browser
Related angular#12659
1 parent 37310e0 commit a123091

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
498498
}
499499

500500
var listener = function(ev) {
501-
if (composing) return;
501+
if (msie !== 11 && composing) return;
502502
var value = element.val();
503503

504504
// IE (11 and under) seem to emit an 'input' event if the placeholder value changes.

0 commit comments

Comments
 (0)