* Adjust program module code.

This commit is contained in:
leiyong
2020-09-28 15:47:04 +08:00
parent feb24928ba
commit 9dbedf957a
3 changed files with 14 additions and 16 deletions

View File

@@ -86,6 +86,16 @@ $("#menuToggle").bind('click', function()
$("#morePRJ").hide();
});
$("#morePRJList").mouseover(function()
{
$("#morePRJ").show();
});
$("#morePRJList").mouseout(function()
{
$("#morePRJ").hide();
});
function getMorePRJ()
{
$("#morePRJ").toggle();