Check if the pagetitle was generated first..

This commit is contained in:
mgalli%geckonnection.com 2006-01-12 23:46:42 +00:00
Родитель 21d4070e16
Коммит 4dd71cc05c
1 изменённых файлов: 8 добавлений и 5 удалений

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

@ -101,12 +101,15 @@ blenderObject.prototype.apply = function () {
htmlFragment = xsltProcessor.transformToFragment(this.xmlRef, this.targetDocument); htmlFragment = xsltProcessor.transformToFragment(this.xmlRef, this.targetDocument);
} catch (e) { } catch (e) {
} }
this.targetElement.appendChild(htmlFragment.firstChild); this.targetElement.appendChild(htmlFragment.firstChild);
document.title=document.getElementById("pagetitle").innerHTML;
//document.getElementById("loadmessage").style.display="none";
/*
* Updates the page title if pagetitle generated ID exists.
* Check the rss_*.xml templates for additional details..
*/
if(document.getElementById("pagetitle")) {
document.title=document.getElementById("pagetitle").innerHTML;
}
} }
} }