Skip to content

Instantly share code, notes, and snippets.

@cvan
Created April 10, 2013 21:49
Show Gist options
  • Select an option

  • Save cvan/5358765 to your computer and use it in GitHub Desktop.

Select an option

Save cvan/5358765 to your computer and use it in GitHub Desktop.
lets you refresh an app in the simulator
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