Browse Source

Dropdown 'is disabled' did not return a value #2699

pull/2710/head
jlukic 9 years ago
parent
commit
f9c3a632cf
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/dropdown.js

2
src/definitions/modules/dropdown.js

@ -2672,7 +2672,7 @@ $.fn.dropdown = function(parameters) {
; ;
}, },
disabled: function() { disabled: function() {
$module.hasClass(className.disabled);
return $module.hasClass(className.disabled);
}, },
focused: function() { focused: function() {
return (document.activeElement === $module[0]); return (document.activeElement === $module[0]);

Loading…
Cancel
Save