From ccc2a072066db5b135f7e36c251cd6d5b4b92fb0 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sat, 14 Jan 2017 11:03:17 +0100 Subject: [PATCH] Usually its not downlading files, just loading them. --- website/include/importerapp.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/include/importerapp.js b/website/include/importerapp.js index 11ce44a..9d95d72 100644 --- a/website/include/importerapp.js +++ b/website/include/importerapp.js @@ -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 () {