I want to reverse order of uploading file in plupload.
Tried:
FilesAdded: function(up, files) {
files = files.reverse();
plupload.each(files, function(file) {
up.start();
});
},
But it does the same.
I want to reverse the order of file uploadin.
Eg:
User selects: Img1,Img2,Img3,Img4
Plupload will upload: Img4,Img3,Img2,Img1
Is there any method to do this?
Thank you so much!