更换后台UI,使用adminlteUI
This commit is contained in:
8
public/static/plugins/Sortable/entry/entry-complete.js
Normal file
8
public/static/plugins/Sortable/entry/entry-complete.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import Sortable from './entry-defaults.js';
|
||||
import Swap from '../plugins/Swap';
|
||||
import MultiDrag from '../plugins/MultiDrag';
|
||||
|
||||
Sortable.mount(new Swap());
|
||||
Sortable.mount(new MultiDrag());
|
||||
|
||||
export default Sortable;
|
||||
19
public/static/plugins/Sortable/entry/entry-core.js
Normal file
19
public/static/plugins/Sortable/entry/entry-core.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import Sortable from '../src/Sortable.js';
|
||||
import AutoScroll from '../plugins/AutoScroll';
|
||||
import OnSpill from '../plugins/OnSpill';
|
||||
import Swap from '../plugins/Swap';
|
||||
import MultiDrag from '../plugins/MultiDrag';
|
||||
|
||||
export default Sortable;
|
||||
|
||||
export {
|
||||
Sortable,
|
||||
|
||||
// Default
|
||||
AutoScroll,
|
||||
OnSpill,
|
||||
|
||||
// Extra
|
||||
Swap,
|
||||
MultiDrag
|
||||
};
|
||||
19
public/static/plugins/Sortable/entry/entry-defaults.js
Normal file
19
public/static/plugins/Sortable/entry/entry-defaults.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import Sortable from '../src/Sortable.js';
|
||||
import AutoScroll from '../plugins/AutoScroll';
|
||||
import { RemoveOnSpill, RevertOnSpill } from '../plugins/OnSpill';
|
||||
// Extra
|
||||
import Swap from '../plugins/Swap';
|
||||
import MultiDrag from '../plugins/MultiDrag';
|
||||
|
||||
Sortable.mount(new AutoScroll());
|
||||
Sortable.mount(RemoveOnSpill, RevertOnSpill);
|
||||
|
||||
export default Sortable;
|
||||
|
||||
export {
|
||||
Sortable,
|
||||
|
||||
// Extra
|
||||
Swap,
|
||||
MultiDrag
|
||||
};
|
||||
Reference in New Issue
Block a user