Am I the only one having really bad experiences with KineticJS in Firefox? I have tested v12 and v14.1, and they both have issues.
Trying to draw as little as possible, barely helps, and sometimes the browser stalls until you force-close it.
Edit: Explanation of the issue.
What I basically do is to draw on several ShapeGroups. Each shapegroup has a Rect as a white background, and on top of that, I draw several other Rect's to make some layout, including setting a fill for some of the rectangels, using the syntax: fill: { image: imageSource, offset: [0, 0] }.
After that I add a Line with a shadow, and on top of that line I add several - up to maybe 10 - Circle's, also with a shadow. Next to each Circle I add Text.
On top of every shape in each shapegroup, I add a small "Gripper", so to speak, that listens on hover. When you hover on this, it sets its own shapegroup property draggable to true. So in this way, you can only drag the whole group while hovering over this Rect/Gripper.
As for events in general, I have hover events on almost everything to setFill for when the mouse moves over any node in the shapegroup.
I experience lag when dragging the whole shapegroup - which is contrained to vertical only - up and down. Note that when I drag a shapegroup, it will overlap the other shapegroups next to it.
Please let me know if you need further explaining. Thanks!