Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created April 22, 2020 15:06
Show Gist options
  • Select an option

  • Save Jagathishrex/3573111f0a7160c5c85b4324a09da51f to your computer and use it in GitHub Desktop.

Select an option

Save Jagathishrex/3573111f0a7160c5c85b4324a09da51f to your computer and use it in GitHub Desktop.
let isPiPSupported = 'pictureInPictureEnabled' in document,
isPiPEnabled = document.pictureInPictureEnabled;
if (!isPiPSupported) {
console.log('The Picture-in-Picture Web API is not available.');
}
else if (!isPiPEnabled) {
console.log('The Picture-in-Picture Web API is disabled.');
} else {
console.log("PiP supported");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment