E-book viewer: Prevent right click from showing browser context menu in the footnote popup panel

This commit is contained in:
Kovid Goyal 2025-09-25 12:02:59 +05:30
parent 40f5df12cf
commit 8d2dac20ff
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -204,6 +204,9 @@ class PopupIframeBoss:
def initialize(self, data):
window.addEventListener('error', self.on_error)
document.addEventListener('contextmenu', def(ev):
ev.preventDefault()
)
def on_error(self, evt):
msg = evt.message