w
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

app.js
application/javascript

Download raw (448 bytes)

// https://github.com/ilikenwf/nestedSortable


$(document).ready(function() {
    $('.sortable').nestedSortable({
        handle: 'div',
        items: 'li',
        toleranceElement: '> div',
        cancel: "[contenteditable]"
        protectRoot: true,
        rootID: 'foo',
        isAllowed: function(placeholder, placeholderParent, currentItem) {
            return true;
        }
    });

    $('.add').on("click", function(){
    })
});