diff options
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 2b6276e65..406557622 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -74,7 +74,7 @@ $.widget( "ui.selectmenu", { // create button this.newelement = $( '<a />', { href: '#' + this.ids[ 0 ], - tabindex: ( tabindex ? tabindex : this.element.attr( 'disabled' ) ? 1 : 0 ), + tabindex: ( tabindex ? tabindex : this.element.attr( 'disabled' ) ? -1 : 0 ), id: this.ids[ 1 ], css: { width: this.element.outerWidth() |