mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 03:14:40 -05:00
fix: remove autosync for now
This commit is contained in:
parent
692fbf1d5d
commit
673142052e
1 changed files with 1 additions and 12 deletions
|
@ -782,17 +782,6 @@ background-color: #0000;
|
|||
playPauseButton.addEventListener("click", () => {
|
||||
toggleVideo()
|
||||
});
|
||||
setInterval(() => {
|
||||
if(qua == "medium")
|
||||
return;
|
||||
if(Math.round(video.currentTime) - Math.round(aud.currentTime) > 1 || Math.round(video.currentTime) - Math.round(aud.currentTime) < -1 || Math.round(aud.currentTime) - Math.round(video.currentTime) > 1 || Math.round(aud.currentTime) - Math.round(video.currentTime) < -1) {
|
||||
video.pause(); if(qua != "medium") { aud.pause(); } playPauseButton.innerHTML = playSVG;
|
||||
video.currentTime > aud.currentTime ? aud.currentTime = video.currentTime : video.currentTime = aud.currentTime;
|
||||
setTimeout(() => {
|
||||
video.play(); if(qua != "medium") { aud.play(); } playPauseButton.innerHTML = pauseSVG;
|
||||
}, 800)
|
||||
}
|
||||
}, 1000)
|
||||
video.addEventListener("click", toggleVideo);
|
||||
video.addEventListener("dblclick", () => {
|
||||
document.documentElement.requestFullscreen();
|
||||
|
|
Loading…
Reference in a new issue