Last active
May 12, 2021 09:37
-
-
Save dinandmentink/2269626bd173c5452c6510e036f91a57 to your computer and use it in GitHub Desktop.
Designmode
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
javascript: (function () {if (document.designMode == "on") {console.log("designMode is now off"); document.designMode = "off"; } else {console.log("designMode is now on"); document.designMode = "on"; } })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment