UNPKG
jquery-sortable
Version:
latest (0.9.13)
0.9.13
jquery plugin for sortable, nestable lists
github.com/johnny/jquery-sortable
johnny/jquery-sortable
jquery-sortable
/
source
/
js
/
debug.js
13 lines
(11 loc)
•
287 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
//= require "vendor/jquery"
//= require "jquery-sortable"
$(
function
(
)
{ $(
'#root.region'
).
sortable
({
group
:
'nested'
,
itemSelector
:
'.part, .layout'
,
containerSelector
:
'.region'
,
nested
:
true
,
placeholder
:
'<div class="placeholder">Drop here</div>'
}); });