Commit 57813aff authored by Neil Kistner's avatar Neil Kistner

adding namespace to fix keydown event

parent 84b63dc1
......@@ -440,7 +440,7 @@
});
// 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')) {
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