summaryrefslogtreecommitdiff
path: root/htroot/js/Crawler.js
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2012-11-24 22:30:05 +0100
committerMichael Peter Christen <mc@yacy.net>2012-11-24 22:30:05 +0100
commitb7004043ead54eb17ac047e6ecbaf623683da2c4 (patch)
treedca418fecc51f816b2d34bef889470eb79b29380 /htroot/js/Crawler.js
parentbf421799820cde06a5acce75e6e1e0be84107df1 (diff)
- added a field cache for solr queries which call only for a single
value - fixed a version conflict exception within a solr add request
Diffstat (limited to 'htroot/js/Crawler.js')
-rw-r--r--htroot/js/Crawler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/htroot/js/Crawler.js b/htroot/js/Crawler.js
index 1fba3b457..208ba6b1e 100644
--- a/htroot/js/Crawler.js
+++ b/htroot/js/Crawler.js
@@ -74,7 +74,7 @@ function handleStatus(){
var ppmSpan = document.getElementById("ppmSpan");
removeAllChildren(ppmSpan);
- for(i = 0; i < ppm / 10; i++){
+ for(i = 0; i < ppm / 25; i++){
img=document.createElement("img");
img.setAttribute("src", BAR_IMG1);
ppmSpan.appendChild(img);