diff options
author | Felix Nagel <info@felixnagel.com> | 2011-08-02 01:57:59 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2011-08-02 01:57:59 +0200 |
commit | ec612142a4c2770be66ac6166649bfc2bf572c7a (patch) | |
tree | 39a2164e628a92c163320cde5313282aae4ad483 | |
parent | eaef46805aec411f80ff58c720e3766309997815 (diff) | |
download | jquery-ui-ec612142a4c2770be66ac6166649bfc2bf572c7a.tar.gz jquery-ui-ec612142a4c2770be66ac6166649bfc2bf572c7a.zip |
fixed: problem with disabled transfer, THX to Dimitri B., via email
-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 87305d59a..39c57edac 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -404,7 +404,7 @@ $.widget("ui.selectmenu", { this._optionLis = this.list.find( 'li:not(.' + self.widgetBaseClass + '-group)' ); // transfer disabled state - if ( this.element.attr( 'disabled' ) === true ) { + if ( this.element.attr( 'disabled' ) ) { this.disable(); } else { this.enable() |