Hello,
How can I update bounds attribute, without creating new instance?
Draggable.create("#elmnt", {
edgeResistance:1,
force3d:false,
bounds:{minX:-200, maxX:0, minY:-200, maxY:0},
throwProps:true,
type:"x,y"});
It it would look like this
Draggable.update("#elmnt",{ bounds:{minX:-100, maxX:0, minY:-150, maxY:0}});