This commit is contained in:
hufangzhou
2023-08-03 17:33:27 +08:00
parent 99c6f1dae1
commit 8e2b9cb872
+13
View File
@@ -14,6 +14,19 @@ $(function()
location.reload();
}
})
$('#mainContent').on('mouseover', 'li.file', function()
{
$(this).children('span.right-icon').removeClass("hidden");
$(this).addClass('backgroundColor');
});
$('#mainContent').on('mouseout', 'li.file', function()
{
$(this).children('span.right-icon').addClass("hidden");
$(this).removeClass('backgroundColor');
});
})
/**