So, I am developing a responsive web tool that is built around the jQuery UI's Draggable function. There is also the use of CSS's transition: scale(X, Y) in there as well.
My issue is; When I scale an object inside of a container, the object is limited in the location of where I can drag it in the container. For a physical demo of this issue, please visit this CodePen.
The code is very basic, in the fact that the only Javascript is as follows:
$(function() {
$('.workspaceObjects').draggable({
containment: $('#ui_workspace'),
});
});
So, it appears to be more of a CSS issue, but it has been puzzling me for a while now, and it is something that needs to be fixed to allow further development of my web tool. What can I do to fix this issue?