mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 07:22:11 +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();
|
||||
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 ) { /* {{{ */
|
||||
|
|
Loading…
Reference in New Issue
Block a user