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
Rotating an element to 180 degrees and then resizing top handle will make it look like you are resizing from the bottom. This is due to the fact that jQuery Resizable is not aware of the rotation angle. I tried to fix it and was able to fix it for the case of 180 degree rotation, but the rest of the angles would require more time investment and quite a bit of math calculations: Here's the code that partially fixes resizable:
I had faced the same issue with ui-resizable, what worked for me was to create a child div within the div and rotate it, that way, ui-resizable is not rotated but will resize whatever is in the child folder:
in my case .curr was the div with ui-resizable, i only wanted to rotate imges/svgs within it.
Rotating an element to 180 degrees and then resizing top handle will make it look like you are resizing from the bottom. This is due to the fact that jQuery Resizable is not aware of the rotation angle. I tried to fix it and was able to fix it for the case of 180 degree rotation, but the rest of the angles would require more time investment and quite a bit of math calculations: Here's the code that partially fixes resizable:
The text was updated successfully, but these errors were encountered: