drag-and-drop-list
v1.2.4
Published
Drag And Drop List Class
Readme
DragAndDropList javascript class
To make UL/LI HTML list dragAndDroped easily. It uses vanilla javascript.
Install
$ npm install drag-and-drop-listDemo
Local demo
$ npm run startExample
import { DragAndDropList } from '../DragAndDropList.js';
const dndList = new DragAndDropList();
DragAndDropList.init();Contructor Parameters
const dndList = new DragAndDropList(first, second);
- first: ['replace'] || 'before' -> drag and drop mode
- second: callbackFunction -> callback function to run when drag and drop finish
