git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8004
91ce42f0-d328-0410-95d8-
f526ca767f89
var type;
var nb = parseInt(value*300/100, 10);
- parent.title = parseInt(value*100,10)/100 + "% finished (approximate " + (corr).toFixed(2) + ")" ;
-
+ var nbp = parseInt(value*100,10)/100;
+ if (nbp > 500) {
+ return;
+ }
+ parent.title = nbp + "% finished (approximate " + (corr).toFixed(2) + ")" ;
var img=document.createElement('img');
img.className="pSliceFinished";
img.src="/bweb/pix.png";