mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-07-29 23:22:02 +08:00
24 lines
343 B
JavaScript
24 lines
343 B
JavaScript
|
|
var TargetPage=null;
|
|
|
|
function OnInit()
|
|
{
|
|
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');
|
|
} |