Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit acffa17

Browse files
committed
fix(input): patched input cjk binding bug
Related #12659
1 parent 728f7e2 commit acffa17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
10701070
$browser.defer.cancel(timeout);
10711071
timeout = null;
10721072
}
1073-
if (composing) return;
1073+
if (msie !== 11 && composing) return;
10741074
var value = element.val(),
10751075
event = ev && ev.type;
10761076

0 commit comments

Comments
 (0)