From 2d7cb14a167560edc1356dcec6f9e100ed7ac691 Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Fri, 18 Apr 2014 18:38:20 -0400 Subject: [PATCH] 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. --- src/ng/directive/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index a6c4fe2cd..40f2a9d43 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -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();