On 4/8/10 8:21 AM, Christian Schmidt wrote:
> Hi Greg,
>
> thank you for your suggestions, I will this discuss with the other core 
> developer.
>
> At the moment I have only the idea override the stopPropagation method, 
> to avoid a copy/past:
> _onMouseDown : function(e)
> {
>     var oldStopPropagation = e.stopPropagation;
>     e.stopPropagation = function() {};
>
>     this.base(arguments, e);
>
>     e.stopPropagation = oldStopPropagation;
> }
>   
Hi Christian,

Thanks, that's the least hacky way to do this, what a good idea.  I'll
use that pending any deeper change to the framework.

Greg

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to