Reverted a line in base.js regarding tab index.
This commit is contained in:
parent
76298267f9
commit
95b1f8b409
1 changed files with 2 additions and 2 deletions
4
src/js/select2/selection/base.js
vendored
4
src/js/select2/selection/base.js
vendored
|
@ -23,8 +23,8 @@ define([
|
|||
|
||||
if (Utils.GetData(this.$element[0], 'old-tabindex') != null) {
|
||||
this._tabindex = Utils.GetData(this.$element[0], 'old-tabindex');
|
||||
} else if (Utils.GetData(this.$element[0], 'tabindex') != null) {
|
||||
this._tabindex = Utils.GetData(this.$element[0], 'tabindex');
|
||||
} else if (this.$element.attr('tabindex') != null) {
|
||||
this._tabindex = this.$element.attr('tabindex');
|
||||
}
|
||||
|
||||
$selection.attr('title', this.$element.attr('title'));
|
||||
|
|
Loading…
Add table
Reference in a new issue