Browse Source

Fix tabindex issue

pull/2300/head
jlukic 9 years ago
parent
commit
15e109b373
1 changed files with 6 additions and 0 deletions
  1. 6
      src/definitions/modules/dropdown.js

6
src/definitions/modules/dropdown.js

@ -1723,6 +1723,9 @@ $.fn.dropdown = function(parameters) {
.val('')
.attr('tabindex', 0)
;
$menu
.attr('tabindex', -1)
;
}
else {
module.debug('Added tabindex to dropdown');
@ -1730,6 +1733,9 @@ $.fn.dropdown = function(parameters) {
$module
.attr('tabindex', 0)
;
$menu
.attr('tabindex', -1)
;
}
}
},

Loading…
Cancel
Save