1
0
mirror of synced 2024-11-22 13:06:08 +03:00

Allow immediate typing when tabbing to multiple select.

This commit is contained in:
Ryan Wallace 2015-05-27 13:39:36 -07:00 committed by Kevin Brown
parent 19c87d3bae
commit 02cca7baa7

View File

@ -54,6 +54,10 @@ define([
self.trigger('focus', evt);
});
this.$selection.on('focus', function (evt) {
self.$search.trigger('focus');
});
this.$selection.on('focusout', '.select2-search--inline', function (evt) {
self.trigger('blur', evt);
});