Commit b30473b0 authored by David Stutz's avatar David Stutz

Merge pull request #298 from wyze/keydown-namespace

adding namespace to fix keydown event.
parents 8eef11d6 57813aff
...@@ -449,7 +449,7 @@ ...@@ -449,7 +449,7 @@
}); });
// Keyboard support. // Keyboard support.
this.$container.on('keydown', $.proxy(function(event) { this.$container.off('keydown.multiselect').on('keydown.multiselect', $.proxy(function(event) {
if ($('input[type="text"]', this.$container).is(':focus')) { if ($('input[type="text"]', this.$container).is(':focus')) {
return; return;
} }
......
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