I have various draggable groups on a kinetic canvas. I need to let a user delete some of these groups.
The first problem is how to actually delete the group (with all its parts) from the canvas.
The second is what kind of UI interaction to use to allow the user to do so. I was thinking to bind dragend, check some condition (eg the position of the object, or some modal variable), and delete the group if the condition is met. Any better suggestions?