fix selectOnBlur when closed by means other then tab key. fixes #470
This commit is contained in:
parent
a19e33e3af
commit
22dba24881
@ -534,9 +534,13 @@ the specific language governing permissions and limitations under the Apache Lic
|
||||
mask.hide();
|
||||
mask.appendTo(this.body());
|
||||
mask.bind("mousedown touchstart", function (e) {
|
||||
var dropdown = $("#select2-drop");
|
||||
var dropdown = $("#select2-drop"), self;
|
||||
if (dropdown.length > 0) {
|
||||
dropdown.data("select2").close();
|
||||
self=dropdown.data("select2");
|
||||
if (self.opts.selectOnBlur) {
|
||||
self.selectHighlighted({noFocus: true});
|
||||
}
|
||||
self.close();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user