Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 2d7cb14

Browse files
committed
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.
1 parent f20b06d commit 2d7cb14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
473473
});
474474
}
475475

476-
var listener = function() {
476+
var listener = function(ev) {
477477
if (composing) return;
478478
var value = element.val();
479479

0 commit comments

Comments
 (0)