mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #3127 from omnivore-app/fix/extension-capture-keyup
Capture keyup events in the extension so they dont propogate up to apps that have keyboard bindings
This commit is contained in:
commit
d29b9802d3
1 changed files with 7 additions and 0 deletions
|
|
@ -397,6 +397,13 @@
|
|||
e.stopPropogation()
|
||||
}
|
||||
})
|
||||
|
||||
root.addEventListener('keyup', (e) => {
|
||||
e.cancelBubble = true
|
||||
if (e.stopPropogation) {
|
||||
e.stopPropogation()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function createLabelRow(label) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue