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

Commit 316ba23

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 316ba23

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

src/ng/directive/input.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -1103,11 +1103,11 @@ function stringBasedInputType(ctrl) {
11031103
}
11041104

11051105
function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1106-
baseInputType(scope, element, attr, ctrl, $sniffer, $browser);
1106+
baseInputType(scope, element, attr, ctrl, $sniffer, $browser, 'text');
11071107
stringBasedInputType(ctrl);
11081108
}
11091109

1110-
function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1110+
function baseInputType(scope, element, attr, ctrl, $sniffer, $browser, inputType) {
11111111
var type = lowercase(element[0].type);
11121112

11131113
// In composition mode, users are still inputing intermediate text buffer,
@@ -1126,7 +1126,10 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
11261126
});
11271127
}
11281128

1129-
var timeout;
1129+
var timeout, oldVal;
1130+
if (inputType === 'text') {
1131+
oldVal = element.val();
1132+
}
11301133

11311134
var listener = function(ev) {
11321135
if (timeout) {
@@ -1152,10 +1155,17 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
11521155
}
11531156
};
11541157

1158+
function ieListener(ev) {
1159+
var val = element.val();
1160+
if (val === oldVal) return;
1161+
oldVal = val;
1162+
listener(ev);
1163+
}
1164+
11551165
// if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the
11561166
// input event on backspace, delete or cut
11571167
if ($sniffer.hasEvent('input')) {
1158-
element.on('input', listener);
1168+
element.on('input', msie ? ieListener : listener);
11591169
} else {
11601170
var deferListener = function(ev, input, origValue) {
11611171
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');

test/ng/snifferSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ describe('$sniffer', function() {
135135
// IE10+ implementation is fubared when mixed with placeholders
136136
mockDivElement = {oninput: noop};
137137

138-
expect($sniffer.hasEvent('input')).toBe(!(msie && msie <= 11));
138+
expect($sniffer.hasEvent('input')).toBe(!(msie && msie <= 9));
139139
});
140140
});
141141

0 commit comments

Comments
 (0)