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

Commit

Permalink
fix(input): composing dosen't works properly in IE
Browse files Browse the repository at this point in the history
  • Loading branch information
jileeon committed Oct 13, 2017
1 parent 5f76bc6 commit 4528eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ng/directive/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
$browser.defer.cancel(timeout);
timeout = null;
}
if (composing) return;
if (composing && ev.originalEvent.data !== undefined) return;
var value = element.val(),
event = ev && ev.type;

Expand Down

0 comments on commit 4528eec

Please sign in to comment.