rt-sim-training-client/static/workertest/passsimulation/passer.js

26 lines
290 B
JavaScript
Raw Normal View History

2020-05-28 13:39:41 +08:00
var i=0;
var update = null;
function timedCount(){
onmessage = (e) => {
if(e.data == "on"){
update = setInterval("passerupdate()", 200);
2020-05-28 13:39:41 +08:00
}
if(e.data == "off"){
clearInterval(update);
}
}
}
function passerupdate(){
postMessage("up");
}
timedCount();