Created
April 22, 2020 15:06
-
-
Save Jagathishrex/3573111f0a7160c5c85b4324a09da51f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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