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

Reverted a line in base.js regarding tab index.

This commit is contained in:
Nadim Afana 2016-05-05 18:09:24 -07:00
parent 76298267f9
commit 95b1f8b409

View File

@ -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'));