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

fix(input): patched input cjk binding bug on ie11 browser. (angularjs v1.2.28) #12661

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ng/directive/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
}

var listener = function(ev) {
if (composing) return;
if (msie !== 11 && composing) return;
var value = element.val();

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