From 4a66d9993bfedd7c4b4eb6b9c86d7b87f285562c Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sun, 18 Nov 2018 12:49:04 +0100 Subject: [PATCH] Progress bar with jquery. --- website/include/importermenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/include/importermenu.js b/website/include/importermenu.js index 24e4978..972ada5 100644 --- a/website/include/importermenu.js +++ b/website/include/importermenu.js @@ -164,7 +164,7 @@ ImporterProgressBar.prototype.Step = function (count) var step = this.maxWidth / this.maxCount; var width = count * step; if (count == this.maxCount) { - width = this.maxWidth - 2; + width = this.maxWidth; } this.contentDiv.width (width); };