stop


Fires on mouseup / touchend.

instance.on("stop", function(data) {
    data.hierarchy              // returns the current hierarchy
    data.movedNode              // returns the node that was moved
    data.newParent              // returns the new list node that the movedNode dropped in
    data.newParentItem          // returns the new item node that the movedNode dropped in
    data.originalParent         // returns the original list node that the movedNode was nested in
    data.originalParentItem     // returns the original item node that the movedNode was nested in
    data.newInstance            // returns the new Nestable instance that the movedNode was dropped in
});