Skip to content

Commit 9c3b672

Browse files
committed
fixed: trim trailing
1 parent 6f97faf commit 9c3b672

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/jquery.ui.selectmenu.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ $.widget("ui.selectmenu", {
744744
_disabled: function( elem ) {
745745
return $( elem ).hasClass( 'ui-state-disabled' );
746746
},
747-
747+
748748
_toggleOption: function( index, flag ) {
749749
var optionElem = this._optionLis.eq( index );
750750
if ( optionElem ) {
@@ -762,7 +762,7 @@ $.widget("ui.selectmenu", {
762762
// true = enabled, false = disabled
763763
_toggleOptgroup: function( index, flag ) {
764764
var optGroupElem = this.list.find( 'li.ui-selectmenu-group-' + index );
765-
if ( optGroupElem ) {
765+
if ( optGroupElem ) {
766766
optGroupElem
767767
.toggleClass( 'ui-state-disabled', flag )
768768
.attr( "aria-disabled", !flag );

0 commit comments

Comments
 (0)