Direct-to-S3 / Azure tus 1.0 resume IndexedDB Golden Retriever 30 locales Webcam & screen capture

Reorder Queue

Reorder files in the upload queue before starting. Drag files to change their upload priority.

What you should see: drag rows to change the order before uploading. Auto-upload is off, so the order you settle on is the order used.
var uploader = CoreUpload.create('#reorder-uploader', {
 uploadUrl: '/api/upload/upload',
 multiple: true,
 autoUpload: false,
 sortable: true,
 enableQueueReorder: true,
 onFileAdded: function(file) {
 // Add file to a sortable list
 addToQueue(file);
 }
});

// Use drag-and-drop to reorder the queue list,
// then call uploader.upload() to start in the new order.
document.getElementById('btn-reorder-upload').onclick = function() {
 uploader.upload();
};