Skip to content

Simple enhancements

Amiya Sahu edited this page Jan 29, 2017 · 2 revisions

To be updated

// close the dropdown when hover out 
$('.action-buttons .dropdown-menu').hover(function() {}, function() {
  	var $e = $(this);
  	if(!$e.hasClass('open')) {
        $e.trigger('click');
    }
});  
Clone this wiki locally