diff options
| author | Michael Peter Christen <mc@yacy.net> | 2012-11-24 22:30:05 +0100 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2012-11-24 22:30:05 +0100 |
| commit | b7004043ead54eb17ac047e6ecbaf623683da2c4 (patch) | |
| tree | dca418fecc51f816b2d34bef889470eb79b29380 /htroot/js/Crawler.js | |
| parent | bf421799820cde06a5acce75e6e1e0be84107df1 (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.js | 2 |
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); |
