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

Commit e8d890f

Browse files
committed
fix(input): update $viewValue when cleared
- Fix when user clicks clear button in an input element in IE, $viewValue not being correctly updated
1 parent 9686f3a commit e8d890f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

src/ng/directive/input.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
11261126
});
11271127
}
11281128

1129-
var timeout;
1129+
var timeout, oldVal;
11301130

11311131
var listener = function(ev) {
11321132
if (timeout) {
@@ -1152,10 +1152,17 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
11521152
}
11531153
};
11541154

1155+
function ieListener(ev) {
1156+
var val = element.val();
1157+
if (val === oldVal) return;
1158+
oldVal = val;
1159+
listener(ev);
1160+
}
1161+
11551162
// if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the
11561163
// input event on backspace, delete or cut
11571164
if ($sniffer.hasEvent('input')) {
1158-
element.on('input', listener);
1165+
element.on('input', msie ? ieListener : listener);
11591166
} else {
11601167
var deferListener = function(ev, input, origValue) {
11611168
if (!timeout) {

src/ng/sniffer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function $SnifferProvider() {
7373
// when cut operation is performed.
7474
// IE10+ implements 'input' event but it erroneously fires under various situations,
7575
// e.g. when placeholder changes, or a form is focused.
76-
if (event === 'input' && msie <= 11) return false;
76+
if (event === 'input' && msie <= 9) return false;
7777

7878
if (isUndefined(eventSupport[event])) {
7979
var divElm = document.createElement('div');

0 commit comments

Comments
 (0)