mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-11-01 03:46:38 -07:00
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
const remote = require('electron').remote;
|
|
|
|
document.addEventListener("keydown", function (e) {
|
|
if (e.keyCode === 123) { // F12
|
|
var window = remote.getCurrentWindow();
|
|
window.toggleDevTools();
|
|
}
|
|
}); |