1
Fork 0

doesnt work revert

This commit is contained in:
ashley 2024-09-01 22:48:23 +00:00
parent 134a9d9e0e
commit 5f7321e96d

View file

@ -278,30 +278,18 @@ function fetchUrls(urls) {
var loopOption = document.getElementById("loopOption");
var speedOption = document.getElementById("speedOption");
let contextMenuTimer;
let doubleClickTimeout = 300;
video.addEventListener("contextmenu", function(event) {
// Check if the video is in fullscreen mode
if (!document.fullscreenElement && !document.webkitFullscreenElement && !document.mozFullScreenElement && !document.msFullscreenElement) {
event.preventDefault();
clearTimeout(contextMenuTimer);
contextMenuTimer = setTimeout(function() {
if (!document.fullscreenElement && !document.webkitFullscreenElement && !document.mozFullScreenElement && !document.msFullscreenElement) {
popupMenu.style.display = "block";
popupMenu.style.left = event.pageX + "px";
popupMenu.style.top = event.pageY + "px";
}
}, doubleClickTimeout);
});
video.addEventListener("dblclick", function(event) {
if (event.button === 2) {
clearTimeout(contextMenuTimer);
popupMenu.style.display = "none";
return;
}
});
// Hide the popup menu when clicking outside of it
window.addEventListener("click", function(event) {
@ -311,6 +299,7 @@ window.addEventListener("click", function(event) {
});
var loopedIndicator = document.getElementById("loopedIndicator");
loopedIndicator.style.display = "none"; // Initially hide the indicator
loopOption.addEventListener("click", function() {
@ -343,6 +332,7 @@ loopOption.addEventListener("click", function() {
});
speedOption.addEventListener("click", function() {
var currentSpeed = video.playbackRate;
var newSpeed = getNextSpeed(currentSpeed);
video.playbackRate = newSpeed;
@ -364,6 +354,5 @@ function getNextSpeed(currentSpeed) {
}
}
const GoogleTranslateEndpoint = "https://translate.google.com/_/TranslateWebserverUi/data/batchexecute?rpcids=MkEWBc&rt=c"
// @license-end