From 93e3ae02a02d8c948ddae6f574f96f2627b1f3b5 Mon Sep 17 00:00:00 2001 From: "mgalli%geckonnection.com" Date: Thu, 12 Jan 2006 23:44:06 +0000 Subject: [PATCH] Update so when it 's done, it will update the page's title. --- minimo/chrome/content/rssview/rssload.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/minimo/chrome/content/rssview/rssload.js b/minimo/chrome/content/rssview/rssload.js index f435ab255ee..6480a04edcf 100644 --- a/minimo/chrome/content/rssview/rssload.js +++ b/minimo/chrome/content/rssview/rssload.js @@ -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; }