UI Sortable component, see the demo.
$ component install yields/sortable
Initialize Sortable with el
.
Bind internal events.
Unbind internal events.
Connect with Sortable
instance, the method returns the given Sortable
.
one = new Sortable(query('.one'));
two = new Sortable(query('.two'));
// one <> two
one
.connect(two)
.connect(one);
// one > two
one.connect(two);
MIT