Created
February 27, 2016 00:12
-
-
Save seksenov/89339e8ae9570b2f94ff to your computer and use it in GitHub Desktop.
This file contains 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
function fullScreen() { | |
console.log("fullscreenchange"); | |
if (typeof Windows !== 'undefined') { | |
var view = Windows.UI.ViewManagement.ApplicationView.getForCurrentView(); | |
if(view.IsFullScreenMode) { | |
console.log("Exiting WinRT Fullscreen"); | |
view.ExitFullScreenMode(); | |
} | |
else { | |
console.log("Entering WinRT Fullscreen"); | |
view.TryEnterFullScreenMode(); | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment