Hi, I'm trying to implement a doubleclick method and I succeeded but it broke something that is essential to the tool. The dragging of the element :)
var ft = svg.freeTransform(..,..,..);
ft.bbox.attr({
fill:"red",
opacity:0
});
ft.dblclick( function(){
});
Without the attr command it didn't work but with that I think I messed up the events for the dragging. What is the correct method to implement doubleclicking?
Hi, I'm trying to implement a doubleclick method and I succeeded but it broke something that is essential to the tool. The dragging of the element :)
Without the attr command it didn't work but with that I think I messed up the events for the dragging. What is the correct method to implement doubleclicking?