Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var ddl = fvdSynchronizer.DragNDropList([], {
- noGenerateHtml: true,
- container: ul
- });
- ddl.onBeginDrag = function(ev) {
- console.log('onBeginDrag', this, arguments);
- };
- ddl.onEndDrag = function(ev) {
- console.log('onEndDrag', this, arguments);
- };
- ddl.onMoved = function(ev, newPos) {
- console.log('onMoved', this, arguments);
- };
Advertisement
Add Comment
Please, Sign In to add comment