1234567891011121314151617181920212223 |
- 'use strict';
- // $(document).ready(function() {
- // Sortable.create(draggablePanelList, {
- // group: 'draggablePanelList',
- // animation: 150
- // });
-
- // Sortable.create(draggableMultiple, {
- // group: 'draggableMultiple',
- // animation: 150
- // });
- // Sortable.create(draggableWithoutImg, {
- // group: 'draggableWithoutImg',
- // animation: 150
- // });
- // });
-
- $( function() {
- $( "#draggablePanelList,#draggableMultiple,#draggableWithoutImg" ).sortable({
- revert: true,
- animation:150
- });
- } );
|