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

Commit 0bf2e0a

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 0bf2e0a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
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) {

0 commit comments

Comments
 (0)