@@ -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,10 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1126
1126
} ) ;
1127
1127
}
1128
1128
1129
- var timeout ;
1129
+ var timeout , oldVal ;
1130
+ if ( inputType === 'text' ) {
1131
+ oldVal = element . val ( ) ;
1132
+ }
1130
1133
1131
1134
var listener = function ( ev ) {
1132
1135
if ( timeout ) {
@@ -1152,10 +1155,17 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
1152
1155
}
1153
1156
} ;
1154
1157
1158
+ function ieListener ( ev ) {
1159
+ var val = element . val ( ) ;
1160
+ if ( val === oldVal ) return ;
1161
+ oldVal = val ;
1162
+ listener ( ev ) ;
1163
+ }
1164
+
1155
1165
// if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the
1156
1166
// input event on backspace, delete or cut
1157
1167
if ( $sniffer . hasEvent ( 'input' ) ) {
1158
- element . on ( 'input' , listener ) ;
1168
+ element . on ( 'input' , msie ? ieListener : listener ) ;
1159
1169
} else {
1160
1170
var deferListener = function ( ev , input , origValue ) {
1161
1171
if ( ! timeout ) {
0 commit comments