Update html/poketube.ejs

This commit is contained in:
Ashley 2023-12-08 18:29:27 +00:00
parent fb935907e7
commit a821da922d

View file

@ -1806,9 +1806,9 @@ const frameRate = 4; // Set the desired frame rate in milliseconds
const drawLoop = () => { const drawLoop = () => {
draw() draw()
setTimeout(() => { setInterval(() => {
step = window.requestAnimationFrame(drawLoop); step = window.requestAnimationFrame(drawLoop);
}, 01); }, 50);
} }
const drawPause = () => { const drawPause = () => {