Update so when it 's done, it will update the page's title.

This commit is contained in:
mgalli%geckonnection.com 2006-01-12 23:44:06 +00:00
Родитель 052eafb9f4
Коммит 93e3ae02a0
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -103,8 +103,9 @@ blenderObject.prototype.apply = function () {
}
this.targetElement.appendChild(htmlFragment.firstChild);
document.title=document.getElementById("pagetitle").innerHTML;
document.getElementById("loadmessage").style.display="none";
//document.getElementById("loadmessage").style.display="none";
}
}
@ -117,7 +118,7 @@ blenderObject.prototype.run = function () {
req.open('GET', this.xmlUrl, false);
req.send(null);
if(req.status == 200) {
this.xmlRef=req.responseXML;
this.xmlRef=req.responseXML;
this.xmlLoadedState=true;
}