I have a group element <g> containing several elements, there's always an <svg> and optionally other stuff. The drag and drop works but it flickers a lot and the drop position is not correct.
https://codepen.io/lucafaggianelli/pen/eYzVmxx?editors=0010
const draw = SVG().size(500, 500).addTo('body')
const table = draw.group()
.svg(TABLE)
.draggable()
Moreover I need to resize the loaded image inside the group and if I do that, the situation is worse as the element jump out of the window (literally :))
const table = draw.group()
.svg(TABLE)
.draggable()
.last().size(100)