-- chatzilla only --

* manifest.rdf
put chatzilla in the tasks menu.

* static.js
fixed js error on attach


git-svn-id: svn://10.0.0.236/trunk@70219 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rginda%netscape.com
2000-05-17 00:50:16 +00:00
parent c0bfdadb20
commit fdecc4cae2
2 changed files with 16 additions and 3 deletions

View File

@@ -487,9 +487,13 @@ function updateTitle (obj)
case "IRCServer":
case "IRCNetwork":
var serv = "", nick = "";
serv = o.server.connection.host;
nick = o.server.me.properNick;
if (o.server)
{
serv = o.server.connection.host;
if (o.server.me)
nick = o.server.me.properNick;
}
if (nick) /* user might be disconnected, nick would be undefined */
tstring += "user '" + nick + "' ";

View File

@@ -33,6 +33,15 @@
</chrome:packages>
</RDF:Description>
<!-- overlay information -->
<RDF:Seq about="urn:mozilla:overlays">
<RDF:li resource="chrome://global/content/tasksOverlay.xul"/>
</RDF:Seq>
<RDF:Seq about="chrome://global/content/tasksOverlay.xul">
<RDF:li>chrome://chatzilla/content/chatzillaOverlay.xul</RDF:li>
</RDF:Seq>
<!-- skin information -->
<RDF:Description about="urn:mozilla:skin:modern/1.0"
chrome:displayName="Modern"