mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-06-22 04:52:46 +08:00
16 lines
280 B
JavaScript
16 lines
280 B
JavaScript
|
|
|
|
|
|
function FinishGuide()
|
|
{
|
|
var tSend={};
|
|
tSend['sequence_id']=Math.round(new Date() / 1000);
|
|
tSend['command']="user_guide_finish";
|
|
tSend['data']={};
|
|
tSend['data']['action']="finish";
|
|
|
|
SendWXMessage( JSON.stringify(tSend) );
|
|
|
|
//window.location.href="../6/index.html";
|
|
}
|