diff options
| author | luccioman <luccioman@users.noreply.github.com> | 2017-06-29 11:36:47 +0200 |
|---|---|---|
| committer | luccioman <luccioman@users.noreply.github.com> | 2017-06-29 11:36:47 +0200 |
| commit | 4b72b29ea2bb58622c9d414e773cbb61ebf976ef (patch) | |
| tree | 465438115ea2663c48ba7d0e5ae13d540ae1f734 /htroot | |
| parent | d08f31c3a8eaa542094e416308036035c374144d (diff) | |
Added an informative title on the crawl start robots.txt status icon
Diffstat (limited to 'htroot')
| -rw-r--r-- | htroot/js/IndexCreate.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/htroot/js/IndexCreate.js b/htroot/js/IndexCreate.js index 21a16854c..f2b7dae65 100644 --- a/htroot/js/IndexCreate.js +++ b/htroot/js/IndexCreate.js @@ -66,6 +66,7 @@ function handleResponse(){ if (docrobotsOK == "1"){ var img=document.createElement("img"); img.setAttribute("src", "env/grafics/ok.png"); + img.setAttribute("title", "Crawl is allowed by the website robots.txt rules (or no robots.txt file is provided)."); img.setAttribute("width", "32px"); img.setAttribute("height", "32px"); img.setAttribute("alt", "robots.txt - OK"); @@ -73,6 +74,7 @@ function handleResponse(){ } else if(docrobotsOK == "0"){ var img=document.createElement("img"); img.setAttribute("src", "env/grafics/bad.png"); + img.setAttribute("title", "Crawl is disallowed by the website robots.txt rules."); img.setAttribute("width", "32px"); img.setAttribute("height", "32px"); img.setAttribute("alt", "robots.txt - Bad"); |
