1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2025-01-31 10:33:29 -05:00

fix issue

This commit is contained in:
ashley 2024-07-06 09:20:55 +00:00
parent 9484df8780
commit c2625bd79d

View file

@ -2424,6 +2424,13 @@ const drawPause = () => {
}
const init = () => {
//fixes a issue where firefox/chromium fails to load the ambinet mode and doesnt load it. - please dont remove this line lmao
video.pause();video.play();
// DO NOT REMOVE
AMvideo.addEventListener("play", drawStart, false)
AMvideo.addEventListener("pause", drawPause, false)
AMvideo.addEventListener("ended", drawPause, false)