Skip to content

Commit 343ed3f

Browse files
committed
fixed: removed unneeded and problematic .selector property, see #269, THX to @brunis
1 parent c9376a6 commit 343ed3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/jquery.ui.selectmenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ $.widget("ui.selectmenu", {
350350
}
351351
})
352352
.bind('mouseout.selectmenu', function() {
353-
if ($(this).is(self._selectedOptionLi().selector)) {
353+
if ($(this).is(self._selectedOptionLi())) {
354354
$(this).addClass(activeClass);
355355
}
356356
$(this).removeClass(self.widgetBaseClass + '-item-focus ui-state-hover');

0 commit comments

Comments
 (0)