You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I used draggable.svg on an SVG which contained an element
which works fine displaying. In draggable.svg the method matrixify from src/modules/optional/transform.js is called and the browser emits
"matrix[transform[0]]" at "transform.js:33" is undefined.
The problem is that
transform[0] == "translate "
i.e. it includes the space at the end, which results in the lookup of
matrix["translate "]
which is undefined.
One temporary fix is to remove the space from the svg file - but it seems to be valid svg (as far as I can tell).