mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 02:54:42 -05:00
dont show the custom popup when fullscreen
This commit is contained in:
parent
bd5bbeb374
commit
4df6463506
1 changed files with 13 additions and 6 deletions
|
@ -286,14 +286,21 @@ function fetchUrls(urls) {
|
|||
var loopOption = document.getElementById("loopOption");
|
||||
var speedOption = document.getElementById("speedOption");
|
||||
|
||||
|
||||
video.addEventListener("contextmenu", function(event) {
|
||||
// Check if the video is in fullscreen mode
|
||||
if (!document.fullscreenElement && !document.webkitFullscreenElement && !document.mozFullScreenElement && !document.msFullscreenElement) {
|
||||
// The video is not in fullscreen mode, prevent the default behavior
|
||||
event.preventDefault();
|
||||
|
||||
// Your additional context menu logic
|
||||
popupMenu.style.display = "block";
|
||||
popupMenu.style.left = event.pageX + "px";
|
||||
popupMenu.style.top = event.pageY + "px";
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Hide the popup menu when clicking outside of it
|
||||
window.addEventListener("click", function(event) {
|
||||
if (event.target !== video) {
|
||||
|
|
Loading…
Reference in a new issue