I want to register a right click listener on the page in epub.js
but don't know how to do it. There is also passEvents
method of rendition object but couldn't find any help on that either. This is my last try:
rendition.on("rendered", () => {
const contents = rendition.getContents()
contents.document.addEventListener('contextmenu', showContextMenu, false);
});