31 lines
856 B
XML
31 lines
856 B
XML
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://chatzilla/locale/chatzillaOverlay.dtd" >
|
|
|
|
<!-- This is the overlay that addes "Chatzilla" to the (global) task menu. -->
|
|
|
|
<overlay id="ChatzillaTaskMenuID"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/x-javascript" src="chrome://chatzilla/content/chatzillaOverlay.js"/>
|
|
|
|
<keyset id="tasksKeys">
|
|
<key id="key_irc" key="&ircCmd.commandkey;" command="Tasks:IRC" modifiers="accel"/>
|
|
</keyset>
|
|
|
|
<commandset id="tasksCommands">
|
|
<command id="Tasks:IRC" oncommand="toIRC();"/>
|
|
</commandset>
|
|
|
|
<menupopup id="taskPopup">
|
|
<menuitem
|
|
position="7"
|
|
label="&ircCmd.label;"
|
|
accesskey="&ircCmd.accesskey;"
|
|
key="key_irc"
|
|
command="Tasks:IRC"/>
|
|
</menupopup>
|
|
|
|
</overlay>
|