1
0
mirror of synced 2024-11-26 06:46:04 +03:00

bind abbr handler before mousedown. fixes #386

This commit is contained in:
Igor Vaynberg 2012-09-13 14:42:53 -07:00
parent ab7ab5b3f7
commit 908c3583d7

View File

@ -1497,6 +1497,15 @@
window.setTimeout(this.bind(function() { this.selection.attr("tabIndex", this.opts.element.attr("tabIndex")); }), 10);
}));
selection.delegate("abbr", "mousedown", this.bind(function (e) {
if (!this.enabled) return;
this.clear();
killEventImmediately(e);
this.close();
this.triggerChange();
this.selection.focus();
}));
selection.bind("mousedown", this.bind(function (e) {
clickingInside = true;
@ -1580,15 +1589,6 @@
killEvent(e);
}));
selection.delegate("abbr", "mousedown", this.bind(function (e) {
if (!this.enabled) return;
this.clear();
killEventImmediately(e);
this.close();
this.triggerChange();
this.selection.focus();
}));
this.setPlaceholder();
this.search.bind("focus", this.bind(function() {