13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
|
|
jQuery(function ($) {
|
|
|
|
$("#sort-list").sortable({
|
|
items : "li:not(.unused-position)",
|
|
update : function () {
|
|
var order = $('#sort-list').sortable('serialize');
|
|
$("#info").load(processingLink+order);
|
|
location.reload();
|
|
}
|
|
}).disableSelection();
|
|
|
|
}); |