Is it just me, or is the default action on the right-mouse-button click
not suppressed on Firefox in 0.7.2?

It works in IE, suppressing the browser menu. But in FF I see my menu
underneath, and the browser's context menu slightly offset on top.

In looking at the code, I found this as well in Target.js, line 259:

      // Read default prevented
      var defaultPrevented = evt._defaultPrevented;

For the mouse event, _defaultPrevented isn't defined. I think the line
should be:

      var defaultPrevented = evt.getDefaultPrevented();

Changing this line of code doesn't fix the original problem though.

There doesn't appear to be a return value defined for
qx.event.handler.EventHandler.__onmouseevent() so the bound function
EventHandler.__onmouseevent() is returning undefined. This must be
triggering FF to show the context menu, despite the previous call to
qx.event.handler.EventHandler.stopDomEvent(vDomEvent) in
_onmouseevent_post.
      
Hugh

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to