1
0
mirror of synced 2024-11-30 00:26:03 +03:00

Merge pull request #644 from kfiku/patch-1

Update select2.js
This commit is contained in:
Igor Vaynberg 2012-12-13 09:05:31 -08:00
commit 7f83d8276a

View File

@ -1522,7 +1522,7 @@ the specific language governing permissions and limitations under the Apache Lic
if (!this.opened()) this.container.removeClass("select2-container-active"); if (!this.opened()) this.container.removeClass("select2-container-active");
window.setTimeout(this.bind(function() { window.setTimeout(this.bind(function() {
// restore original tab index // restore original tab index
var ti=this.opts.element.attr("tabIndex"); var ti=this.opts.element.attr("tabIndex") || 0;
if (ti) { if (ti) {
this.selection.attr("tabIndex", ti); this.selection.attr("tabIndex", ti);
} else { } else {
@ -1565,7 +1565,7 @@ the specific language governing permissions and limitations under the Apache Lic
if (!this.opened()) { if (!this.opened()) {
this.container.removeClass("select2-container-active"); this.container.removeClass("select2-container-active");
} }
window.setTimeout(this.bind(function() { this.search.attr("tabIndex", this.opts.element.attr("tabIndex")); }), 10); window.setTimeout(this.bind(function() { this.search.attr("tabIndex", this.opts.element.attr("tabIndex") || 0); }), 10);
})); }));
selection.bind("keydown", this.bind(function(e) { selection.bind("keydown", this.bind(function(e) {