Skip to content

Instantly share code, notes, and snippets.

@zikkeung
Created August 2, 2013 02:29
Show Gist options
  • 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