update resources

This commit is contained in:
QIDI TECH
2025-09-17 09:23:01 +08:00
parent 72a3a1e841
commit eec6d77112
286 changed files with 13677 additions and 4343 deletions

View File

@@ -11,9 +11,15 @@ function OnInit()
SendMsg_GetLoginInfo();
GotoMenu( 'home' );
$("#Login2").hover(function() {
$("#Login2").click(function() {
$("#DropdownWrapper").css("visibility", "visible");
}, function() {
});
$(document).on('click', function(e) {
if (!$(e.target).closest('#Login2').length) {
$("#DropdownWrapper").css("visibility", "hidden");
}
});
$('#Login2').on('blur', function() {
$("#DropdownWrapper").css("visibility", "hidden");
});
OnUpdatePluginInstalltip();