Usually its not downlading files, just loading them.

This commit is contained in:
kovacsv 2017-01-14 11:03:17 +01:00
parent 03fd625702
commit ccc2a07206

View File

@ -424,7 +424,11 @@ ImporterApp.prototype.ProcessFiles = function (fileList, isUrl)
while (menu.lastChild) {
menu.removeChild (menu.lastChild);
}
menu.innerHTML = 'Downloading files...';
if (isUrl) {
menu.innerHTML = 'Downloading files...';
} else {
menu.innerHTML = 'Loading files...';
}
processorFunc (userFiles, {
onError : function () {