Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sortable-custom.js 627B

1234567891011121314151617181920212223
  1. 'use strict';
  2. // $(document).ready(function() {
  3. // Sortable.create(draggablePanelList, {
  4. // group: 'draggablePanelList',
  5. // animation: 150
  6. // });
  7. // Sortable.create(draggableMultiple, {
  8. // group: 'draggableMultiple',
  9. // animation: 150
  10. // });
  11. // Sortable.create(draggableWithoutImg, {
  12. // group: 'draggableWithoutImg',
  13. // animation: 150
  14. // });
  15. // });
  16. $( function() {
  17. $( "#draggablePanelList,#draggableMultiple,#draggableWithoutImg" ).sortable({
  18. revert: true,
  19. animation:150
  20. });
  21. } );