Elements became randomly non-resizable after dragging

倾然丶 夕夏残阳落幕 提交于 2019-12-02 00:37:42

The problem is that the resizable icons are selectable as well, so when you include them in the lasso, they are selected and their top and left are changed when you drag.

Selectable has a filter option that allows to specify which elements should be selectable. By setting it to '.designer-field' it should solve the problem.

$(".designer-panel-body").selectable({
    filter: '.designer-field'
});

See: https://jsfiddle.net/kec4jgvf/1/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!