diff options
-rw-r--r-- | js/jquery.multi-select.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/jquery.multi-select.js b/js/jquery.multi-select.js index de63a5f..426953f 100644 --- a/js/jquery.multi-select.js +++ b/js/jquery.multi-select.js @@ -113,7 +113,7 @@ that.$selectableUl.on('mouseenter', '.ms-elem-selectable', function(){ $('li', that.$container).removeClass('ms-hover'); $(this).addClass('ms-hover'); - }).on('mouseout', function(){ + }).on('mouseleave', function(){ $('li', that.$container).removeClass('ms-hover'); }); @@ -137,7 +137,7 @@ that.$selectionUl.on('mouseenter', '.ms-elem-selection', function(){ $('li', that.$selectionUl).removeClass('ms-hover'); $(this).addClass('ms-hover'); - }).on('mouseout', function(){ + }).on('mouseleave', function(){ $('li', that.$selectionUl).removeClass('ms-hover'); }); |