Created
April 10, 2013 21:49
-
-
Save cvan/5358765 to your computer and use it in GitHub Desktop.
lets you refresh an app in the simulator
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('keydown', function(e) { | |
| if (e.keyCode == 82 && e.metaKey) { | |
| window.location.reload(); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment