Comment 11 for bug 75420

Revision history for this message
Dom (dominique-rabet) wrote :

Hi all,

I was annoyed as well by this context menu behavior, so I peeked at the source and I changed this:

in the content/overlay.js file, on line 257 (in the izOnMouseClick function declaration), I replaced
       if (contextDisabled ) {
by
       if (contextDisabled && e.originalTarget.tagName == "IMG") {

Repackage your extension, and the nasty popup menus are gone.

For you convenience, I attached the resulting imagezoom.jar .

Let me know if that works for you.

Dom