Doc Update: New path for web-contents.md

This commit is contained in:
Tiago Danin 2017-12-28 18:22:30 -02:00 committed by GitHub
parent 5f4b62b6c8
commit e9121936e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ window.addEventListener('keyup', doSomething, true)
Note the third parameter `true` which means the listener will always receive key presses before other listeners so they can't have `stopPropagation()` called on them. Note the third parameter `true` which means the listener will always receive key presses before other listeners so they can't have `stopPropagation()` called on them.
The [`before-input-event`](web-contents.md#event-before-input-event) event The [`before-input-event`](../api/web-contents.md#event-before-input-event) event
is emitted before dispatching `keydown` and `keyup` events in the page. It can is emitted before dispatching `keydown` and `keyup` events in the page. It can
be used to catch and handle custom shortcuts that are not visible in the menu. be used to catch and handle custom shortcuts that are not visible in the menu.