Skip to content

Instantly share code, notes, and snippets.

@Krazete
Created April 9, 2019 07:34
Show Gist options
  • Save Krazete/a8df95afe5764b4ebdad1791d065ece6 to your computer and use it in GitHub Desktop.
Save Krazete/a8df95afe5764b4ebdad1791d065ece6 to your computer and use it in GitHub Desktop.
Force-Enable Video Controls
function forceControls () {
Array.from(document.getElementsByTagName("video")).forEach(video => {
video.setAttribute("controls", "true");
video.style.zIndex = "9999";
});
requestAnimationFrame(forceControls);
}
forceControls();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment