Skip to content

Instantly share code, notes, and snippets.

@zikkeung
Created August 2, 2013 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zikkeung/6137084 to your computer and use it in GitHub Desktop.
Save zikkeung/6137084 to your computer and use it in GitHub Desktop.
Devtools for developers
window.addEventListener('keydown', function (e) {
if (e.keyIdentifier === 'F12') {
require('nw.gui').Window.get().showDevTools();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment