*) Bugfix for problem with ajax graphic

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3815 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 18 years ago
parent 9d6605a83c
commit e75ca857c3

@ -40,12 +40,14 @@ function handleResponse(){
} }
// getting the sitemap URL contained in the robots.txt // getting the sitemap URL contained in the robots.txt
sitemap=""; if (document.getElementsByName("sitemapURL").length > 0) {
if(response.getElementsByTagName("sitemap")[0].firstChild!=null){ sitemap="";
sitemap=response.getElementsByTagName("sitemap")[0].firstChild.nodeValue; if(response.getElementsByTagName("sitemap")[0].firstChild!=null){
} sitemap=response.getElementsByTagName("sitemap")[0].firstChild.nodeValue;
document.getElementsByName("sitemapURL")[0].value=sitemap; }
document.getElementById("sitemap").disabled=false; document.getElementsByName("sitemapURL")[0].value=sitemap;
document.getElementById("sitemap").disabled=false;
}
// clear the ajax image // clear the ajax image
document.getElementsByName("ajax")[0].setAttribute("src", AJAX_OFF); document.getElementsByName("ajax")[0].setAttribute("src", AJAX_OFF);

Loading…
Cancel
Save