Fixed missing js files for sorting shelfs

This commit is contained in:
OzzieIsaacs 2017-02-07 20:14:43 +01:00
parent 7957827b2d
commit 98ed740e73
2 changed files with 32 additions and 0 deletions

2
cps/static/js/Sortable.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,30 @@
Sortable.create(sortTrue, {
group: "sorting",
sort: true
});
function sendData(path){
var elements;
var counter;
var maxElements;
var tmp=[];
elements=Sortable.utils.find(sortTrue,"div");
maxElements=elements.length;
var form = document.createElement("form");
form.setAttribute("method", "post");
form.setAttribute("action", path);
for(counter=0;counter<maxElements;counter++){
tmp[counter]=elements[counter].getAttribute("id");
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", elements[counter].getAttribute("id"));
hiddenField.setAttribute("value", counter+1);
form.appendChild(hiddenField);
}
document.body.appendChild(form);
form.submit();
}