Capture keyup events in the extension so they dont propogate up to apps that have keyboard bindings
This commit is contained in:
@ -397,6 +397,13 @@
|
||||
e.stopPropogation()
|
||||
}
|
||||
})
|
||||
|
||||
root.addEventListener('keyup', (e) => {
|
||||
e.cancelBubble = true
|
||||
if (e.stopPropogation) {
|
||||
e.stopPropogation()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function createLabelRow(label) {
|
||||
|
||||
Reference in New Issue
Block a user