We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
draw = SVG('drawing').size(500,500); var g = draw.group(); var rect1 = draw.rect(80, 80).attr({ fill: '#f06' }) var rect2 = draw.rect(80, 80).attr({ fill: '#1f6' }).move(100,100) g.add(rect1); g.add(rect2); g.draggable(); rect1.selectize().resize(); rect2.selectize().resize();
when i resize the rect2,the rect1 moved again
The text was updated successfully, but these errors were encountered:
Disable draggable when you start resizing and enable it again when you are done. Thats the simplest solution here I guess
draggable
Sorry, something went wrong.
No branches or pull requests
when i resize the rect2,the rect1 moved again
The text was updated successfully, but these errors were encountered: