I made a plugin with Firebreath, with a custom event, and I would like to register a callback with YUI Event.
Y.on( "mycustomevent", callback, pluginNode );
Does not register my callback, whereas
pluginNode.addEventListener( "mycustomevent", callback, false );
does (on Firefox, not on IE).
How can I use YUI to register my event?