blob: 8bd5753e91dad08e0c1370e38b388349921195ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/menulist.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/joinchat.css" type="text/css"?>
<?xml-stylesheet type="text/css" href="chrome://messenger/skin/input-fields.css"?>
<!DOCTYPE html SYSTEM "chrome://messenger/locale/joinChat.dtd">
<html
id="joinChatDialog"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
scrolling="false"
>
<head>
<title>&joinChatWindow.title;</title>
<script
defer="defer"
src="chrome://messenger/content/globalOverlay.js"
></script>
<script
defer="defer"
src="chrome://global/content/editMenuOverlay.js"
></script>
<script
defer="defer"
src="chrome://messenger/content/chat/joinchat.js"
></script>
</head>
<body>
<xul:dialog buttons="accept,cancel">
<div id="joinChatGrid">
<div>
<xul:label value="&account.label;" control="accountlist" />
</div>
<div>
<xul:menulist
id="accountlist"
onselect="joinChat.onAccountSelect();"
/>
</div>
<div class="optional-col required">&optional.label;</div>
</div>
<xul:hbox>
<xul:checkbox
id="autojoin"
label="&autojoin.label;"
accesskey="&autojoin.accesskey;"
/>
</xul:hbox>
</xul:dialog>
</body>
</html>
|