how can position of connection target when stop dragging. tried this, think element removed then:
jsplumb.bind("connectiondragstop", function(info){ console.log(info.target.position()) })
no. guess problem wrong syntax. per have learnt these days should like
jsplumb.bind("connectiondragstop", function(info){ console.log(info.targetid.position()) ; })
because here info connection object. , have property targetid. best :-)
Comments
Post a Comment