SwVitaliy

Untitled

Nov 19th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. var ddl = fvdSynchronizer.DragNDropList([], {
  2. noGenerateHtml: true,
  3. container: ul
  4. });
  5.  
  6. ddl.onBeginDrag = function(ev) {
  7. console.log('onBeginDrag', this, arguments);
  8. };
  9.  
  10. ddl.onEndDrag = function(ev) {
  11. console.log('onEndDrag', this, arguments);
  12. };
  13.  
  14. ddl.onMoved = function(ev, newPos) {
  15. console.log('onMoved', this, arguments);
  16. };
Advertisement
Add Comment
Please, Sign In to add comment