mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 21:17:58 +01:00
test ignore
This commit is contained in:
parent
e143dcb450
commit
c0cadded4c
1 changed files with 4 additions and 8 deletions
|
@ -1793,9 +1793,7 @@ const ctx = canvas.getContext("2d")
|
|||
let step;
|
||||
|
||||
const draw = () => {
|
||||
if (AMvideo.readyState >= 2) { // Check if video is playable (HAVE_CURRENT_DATA or greater)
|
||||
ctx.drawImage(AMvideo, 0, 0, canvas.width, canvas.height);
|
||||
}
|
||||
};
|
||||
|
||||
const drawLoop = () => {
|
||||
|
@ -1809,12 +1807,10 @@ const drawPause = () => {
|
|||
}
|
||||
|
||||
const init = () => {
|
||||
document.addEventListener("DOMContentLoaded", () => {
|
||||
AMvideo.addEventListener("canplaythrough", draw, false);
|
||||
AMvideo.addEventListener("play", drawLoop, false);
|
||||
AMvideo.addEventListener("pause", drawPause, false);
|
||||
AMvideo.addEventListener("ended", drawPause, false);
|
||||
});
|
||||
};
|
||||
|
||||
const cleanup = () => {
|
||||
|
|
Loading…
Reference in a new issue