support dragging and dropping multiple files

pull/1/head
ansuz 2017-06-08 18:12:17 +02:00
parent 8bee45d0f4
commit fe2fef5e4c
1 changed files with 4 additions and 1 deletions

View File

@ -361,7 +361,10 @@ define([
var dropped = e.originalEvent.dataTransfer.files;
counter = 0;
$label.removeClass('hovering');
handleFile(dropped[0]);
Array.prototype.slice.call(dropped).forEach(function (d) {
handleFile(d);
});
});
// we're in upload mode