diff options
Diffstat (limited to 'src/ng/directive/input.js')
| -rw-r--r-- | src/ng/directive/input.js | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index dadf07c4..6e394afd 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -379,7 +379,8 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {      }    }; -  // if the browser does support "input" event, we are fine +  // if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the +  // input event on backspace, delete or cut    if ($sniffer.hasEvent('input')) {      element.bind('input', listener);    } else { | 
