Progress bar with jquery.

This commit is contained in:
kovacsv 2018-11-18 12:49:04 +01:00
parent 618505c0c7
commit 4a66d9993b

View File

@ -164,7 +164,7 @@ ImporterProgressBar.prototype.Step = function (count)
var step = this.maxWidth / this.maxCount; var step = this.maxWidth / this.maxCount;
var width = count * step; var width = count * step;
if (count == this.maxCount) { if (count == this.maxCount) {
width = this.maxWidth - 2; width = this.maxWidth;
} }
this.contentDiv.width (width); this.contentDiv.width (width);
}; };