diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2007-05-07 14:05:49 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2007-05-07 14:05:49 +0000 |
| commit | a3ecfe0a45f59536ceb97a0ff3782d158f5e7e31 (patch) | |
| tree | 95728ffd6211eeed64b96fd3058e7236a8813c59 /htroot/js/IndexCreate.js | |
| parent | ba6e91ed7692cf539bdd8ef248235f8c85e98e3f (diff) | |
replaced failed-icon by new 'bad'-icon
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3680 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/js/IndexCreate.js')
| -rw-r--r-- | htroot/js/IndexCreate.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/htroot/js/IndexCreate.js b/htroot/js/IndexCreate.js index 35893d3d9..83db0622d 100644 --- a/htroot/js/IndexCreate.js +++ b/htroot/js/IndexCreate.js @@ -24,14 +24,14 @@ function handleResponse(){ if(robotsOK==1){ img=document.createElement("img"); img.setAttribute("src", "/env/grafics/ok.png"); - img.setAttribute("width", "24px"); - img.setAttribute("height", "24px"); + img.setAttribute("width", "32px"); + img.setAttribute("height", "32px"); robotsOKspan.appendChild(img); }else if(robotsOK==0){ img=document.createElement("img"); - img.setAttribute("src", "/env/grafics/failed.png"); - img.setAttribute("width", "24px"); - img.setAttribute("height", "24px"); + img.setAttribute("src", "/env/grafics/bad.png"); + img.setAttribute("width", "32px"); + img.setAttribute("height", "32px"); robotsOKspan.appendChild(img); robotsOKspan.appendChild(img); }else{ |
