mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-05-13 03:01:39 -04:00
Selectmenu: fixed event for hovering, click scrollbar issue
This commit is contained in:
5
ui/jquery.ui.selectmenu.js
vendored
5
ui/jquery.ui.selectmenu.js
vendored
@@ -139,11 +139,10 @@ $.widget( "ui.selectmenu", {
|
||||
'click': function( event ) {
|
||||
event.preventDefault();
|
||||
},
|
||||
// namespacing is needed (_bind should do the trick, but it doesnt)
|
||||
'mouseenter.selectmenu': function() {
|
||||
mouseenter: function() {
|
||||
that.hover = true;
|
||||
},
|
||||
'mouseleave.selectmenu': function() {
|
||||
mouseleave: function() {
|
||||
that.hover = false;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user