electron/docs/fiddles/features/keyboard-shortcuts/web-apis/renderer.js

8 lines
250 B
JavaScript
Raw Normal View History

function handleKeyPress (event) {
// You can put code here to handle the keypress.
document.getElementById("last-keypress").innerText = event.key
console.log(`You pressed ${event.key}`)
}
window.addEventListener('keyup', handleKeyPress, true)