Skip to content
Snippets Groups Projects
Unverified Commit 97d390cd authored by hiroshisuga's avatar hiroshisuga Committed by GitHub
Browse files

Update service.js

parent 1476deb2
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,11 @@ function fullscreenRequest(element) {
element.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
} else if (element.msRequestFullscreen) {
element.msRequestFullscreen();
} else {
return;
}
document.activeElement.blur();
element.focus();
}
const toggleFullScreen = (ref = null) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment