mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-04 11:25:11 +08:00

JIRA: none Change-Id: I43d79d740b9180a16d02c54c0c9d6e11c23b1ce7 (cherry picked from commit 03d8d58fad95199236ee7a5f931d3f395ee8dc1d)
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');
|
|
} |