aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/widget/input.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget/input.js b/src/widget/input.js
index 3f25f09f..a744e567 100644
--- a/src/widget/input.js
+++ b/src/widget/input.js
@@ -817,7 +817,7 @@ angularWidget('input', function(inputElement){
inputElement.val(widget.$viewValue || '');
};
- inputElement.bind('keydown change', function(event){
+ inputElement.bind('keydown change input', function(event) {
var key = event.keyCode;
if (/*command*/ key != 91 &&
/*modifiers*/ !(15 < key && key < 19) &&