Reputation: 167
I'm searching a event like:
stage.on('drag',function(){
// do something
});
Only I can search in Internet is events dragstart and dragend. Something like that is exist in KineticJS?
Upvotes: 0
Views: 221
Reputation: 2078
I believe you're looking for the event dragmove
?
If so:
stage.on('dragmove',function(){
// do something
});
Upvotes: 1