mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-06-18 02:59:27 +00:00
add mouseover and mouseleave events for dropfoldermenu
This commit is contained in:
parent
46264c49d6
commit
401ecf1114
|
@ -1231,6 +1231,14 @@ $(document).ready(function() { /* {{{ */
|
||||||
$(this).parent().hide();
|
$(this).parent().hide();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("body").on("mouseenter", "#main-menu-dropfolderlist ul.dropdown-menu li a", function(e) {
|
||||||
|
$(e.currentTarget).find('.dropfolder-menu-img').css('display', 'inline');
|
||||||
|
});
|
||||||
|
$("body").on("mouseleave", "#main-menu-dropfolderlist ul.dropdown-menu li a", function(e) {
|
||||||
|
$(e.currentTarget).find('.dropfolder-menu-img').hide();
|
||||||
|
});
|
||||||
|
|
||||||
}); /* }}} */
|
}); /* }}} */
|
||||||
|
|
||||||
(function( SeedDMSTask, $, undefined ) { /* {{{ */
|
(function( SeedDMSTask, $, undefined ) { /* {{{ */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user