fix(input): fix ReferenceError in event listener

Sigh, I ran the tests and they passed... Because I am not running them on IE.

Grumble grumble grumble.
This commit is contained in:
Caitlin Potter
2014-04-18 18:38:20 -04:00
parent f20b06d26d
commit 2d7cb14a16
+1 -1
View File
@@ -473,7 +473,7 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
});
}
var listener = function() {
var listener = function(ev) {
if (composing) return;
var value = element.val();