Forum Discussion
Hd2519250
May 19, 2020Copper Contributor
SharePoint Online site Shortcut Won't Open with Browser "Back" and "Forward" Controls in Mobile iOS
I have a large SharePoint Online site and an iPhone 11 Pro cellphone. These are the steps: 1. I go to my large SharePoint Online Site on Safari on my cellphone and try to "Add to Home Screen" as ...
Hd2519250
Jun 14, 2020Copper Contributor
The answer to this is found here: https://developers.google.com/web/fundamentals/native-hardware/fullscreen
You would insert a javascript snippet to cancel the browser's full-screen mode:
function cancelFullScreen() {
var doc = window.document;
var cancelFullScreen = doc.exitFullscreen || doc.mozCancelFullScreen || doc.webkitExitFullscreen || doc.msExitFullscreen;
cancelFullScreen.call(doc);
}
<body onload="cancelFullScreen()">