flask-python-helm2/static/js/dashboard.js
2020-09-14 13:50:50 +08:00

6 lines
212 B
JavaScript

$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(500);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(500);
});