Skip to content

Instantly share code, notes, and snippets.

@richjenks
Created April 16, 2016 07:53
Show Gist options
  • Save richjenks/e2a4aebf969787060b2a5803153bcbc0 to your computer and use it in GitHub Desktop.
Save richjenks/e2a4aebf969787060b2a5803153bcbc0 to your computer and use it in GitHub Desktop.
function toggleFullScreen() {
var doc = window.document;
var docEl = doc.documentElement;
var requestFullScreen = docEl.requestFullscreen || docEl.mozRequestFullScreen || docEl.webkitRequestFullScreen;
var cancelFullScreen = doc.exitFullscreen || doc.mozCancelFullScreen || doc.webkitExitFullscreen;
if(!doc.fullscreenElement && !doc.mozFullScreenElement && !doc.webkitFullscreenElement) {
requestFullScreen.call(docEl);
}
else {
cancelFullScreen.call(doc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment