You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Enable the full screen mode for the control buttons and the jointjs paper. Wrap them into a single div container
functionenterFullscreen(element){if(element.requestFullscreen){element.requestFullscreen();}elseif(element.mozRequestFullScreen){element.mozRequestFullScreen();}elseif(element.msRequestFullscreen){element.msRequestFullscreen();}elseif(element.webkitRequestFullscreen){element.webkitRequestFullscreen();}}enterFullscreen(document.documentElement);// the whole pageenterFullscreen(document.getElementById("ControllersAndPaper"));// an element
The text was updated successfully, but these errors were encountered:
Enable the full screen mode for the control buttons and the jointjs paper. Wrap them into a single div container
The text was updated successfully, but these errors were encountered: