@@ -1103,11 +1103,11 @@ function stringBasedInputType(ctrl) {
1103
1103
}
1104
1104
1105
1105
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' ) ;
1107
1107
stringBasedInputType ( ctrl ) ;
1108
1108
}
1109
1109
1110
- function baseInputType ( scope , element , attr , ctrl , $sniffer , $browser ) {
1110
+ function baseInputType ( scope , element , attr , ctrl , $sniffer , $browser , inputType ) {
1111
1111
var type = lowercase ( element [ 0 ] . type ) ;
1112
1112
1113
1113
// In composition mode, users are still inputing intermediate text buffer,
@@ -1126,7 +1126,11 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1126
1126
} ) ;
1127
1127
}
1128
1128
1129
- var timeout ;
1129
+ var timeout , oldVal ;
1130
+ var viewValueUpdated = true , msieInput = msie >= 10 && msie <= 11 ;
1131
+ if ( msieInput && inputType === 'text' ) {
1132
+ oldVal = element . val ( ) ;
1133
+ }
1130
1134
1131
1135
var listener = function ( ev ) {
1132
1136
if ( timeout ) {
@@ -1152,10 +1156,18 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1152
1156
}
1153
1157
} ;
1154
1158
1159
+ function ieListener ( ev ) {
1160
+ var val = element . val ( ) ;
1161
+ if ( val === oldVal && ! viewValueUpdated ) return ;
1162
+ oldVal = val ;
1163
+ viewValueUpdated = isDefined ( ctrl . $modelValue ) ;
1164
+ listener ( ev ) ;
1165
+ }
1166
+
1155
1167
// if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the
1156
1168
// input event on backspace, delete or cut
1157
1169
if ( $sniffer . hasEvent ( 'input' ) ) {
1158
- element . on ( 'input' , listener ) ;
1170
+ element . on ( 'input' , msie ? ieListener : listener ) ;
1159
1171
} else {
1160
1172
var deferListener = function ( ev , input , origValue ) {
1161
1173
if ( ! timeout ) {
@@ -1212,6 +1224,10 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1212
1224
// Workaround for Firefox validation #12102.
1213
1225
var value = ctrl . $isEmpty ( ctrl . $viewValue ) ? '' : ctrl . $viewValue ;
1214
1226
if ( element . val ( ) !== value ) {
1227
+ // Workaround for IE 10 & 11 input updates #11193
1228
+ if ( msieInput ) {
1229
+ viewValueUpdated = true ;
1230
+ }
1215
1231
element . val ( value ) ;
1216
1232
}
1217
1233
} ;
0 commit comments