This one could be tricky. Usually doubleclicks are rarely used on web.
(please see:
http://www.quirksmode.org/js/events_mouse.html ,
dblclick section).
Anyway, the Raphael node can be accessed by wrapper property on
elements (myFSAState.wrapper).
Then you can play with dblclick handler from Raphael (http://
raphaeljs.com/reference.html#events)
e.g. myFSAState.wrapper.dblclick(function() { /* whatever */ });
The trickiest part is to separate clicks and doubleclicks.
Note that there is a dragger handler registered for mousedown event.
Keep this in mind
when playing with the dblclick(). Needs some experimentation.
A simple test case would help.
Regards,
David