Commit 8ce6b52f authored by David Stutz's avatar David Stutz

Merge pull request #226 from cedricdeschenes/firefox-key-events

Firefox Mobile issue when filter is on
parents f2604e91 cccb78b9
......@@ -553,7 +553,7 @@
this.$filter.val(this.query).on('click', function(event) {
event.stopPropagation();
}).on('keydown', $.proxy(function(event) {
}).on('input keydown', $.proxy(function(event) {
// This is useful to catch "keydown" events after the browser has updated the control.
clearTimeout(this.searchTimeout);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment