Skip to content

trevorgerhardt/sortable

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sortable

UI Sortable component, see the demo.

Installation

$ component install yields/sortable

API

events

  • update, emitted when sort changes happen.
  • start(e), emitted when the drag starts.
  • drop(e), emitted when drop happens.

Sortable(el)

Initialize Sortable with el.

.ignore(selector)

Ignore items matching the given selector.

.handle(selector)

Set the handle to selector.

.bind()

Bind internal events.

.unbind()

Unbind internal events.

.connect(sortable)

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);

License

MIT

About

UI Sortable.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%