update resources

This commit is contained in:
QIDI TECH
2025-02-26 20:01:47 +08:00
parent 29360eb5e5
commit 7d213ce20c
61 changed files with 1515 additions and 1219 deletions

View File

@@ -0,0 +1,25 @@
var TargetPage=null;
function OnInit()
{
TranslatePage();
TargetPage=GetQueryString("target");
//setTimeout("JumpToTarget()",20*1000);
}
function HandleStudio( pVal )
{
let strCmd=pVal['command'];
if(strCmd=='userguide_profile_load_finish')
{
JumpToTarget();
}
}
function JumpToTarget()
{
window.open('../'+TargetPage+'/index.html','_self');
}