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

Commit

Permalink
fix(input): fix ReferenceError in event listener
Browse files Browse the repository at this point in the history
Sigh, I ran the tests and they passed... Because I am not running them on IE.

Grumble grumble grumble.
  • Loading branch information
caitp committed Apr 18, 2014
1 parent f20b06d commit 2d7cb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ng/directive/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 2d7cb14

Please sign in to comment.