Created
December 15, 2014 15:43
-
-
Save bwinton/4284655fd12d0e4351dd to your computer and use it in GitHub Desktop.
How to do special things if Whimsy is installed.
This file contains hidden or 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
| window.addEventListener("message", function (event) { | |
| if (event.data === 'whimsy:enabled') { | |
| document.querySelector('body').classList.add('whimsical'); | |
| } | |
| }, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment