LEFT | RIGHT |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
4 - License, v. 2.0. If a copy of the MPL was not distributed with this file, | 4 - License, v. 2.0. If a copy of the MPL was not distributed with this file, |
5 - You can obtain one at http://mozilla.org/MPL/2.0/. --> | 5 - You can obtain one at http://mozilla.org/MPL/2.0/. --> |
6 | 6 |
7 <?xml-stylesheet type="text/css" href="chrome://global/skin/global.css"?> | |
8 <?xml-stylesheet type="text/css" href="chrome://url-fixer/skin/survey.css"?> | |
9 <!DOCTYPE overlay SYSTEM "chrome://url-fixer/locale/survey.dtd"> | 7 <!DOCTYPE overlay SYSTEM "chrome://url-fixer/locale/survey.dtd"> |
10 <panel | 8 <panel |
11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 9 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
12 id="survey" | 10 id="url-fixer-survey" |
13 title="&urlfixer.survey.title;" | |
14 type="arrow" | 11 type="arrow" |
15 orient="vertical" | 12 orient="vertical" |
16 onblur="window.close();" | |
17 windowtype="urlfixer:survey"> | 13 windowtype="urlfixer:survey"> |
18 <script type="text/javascript" src="common.js"/> | 14 <description id="url-fixer-title">&urlfixer.survey.title;</description> |
19 <script type="text/javascript" src="survey.js"/> | |
20 <hbox> | 15 <hbox> |
21 <vbox> | 16 <vbox> |
22 <image id="icon"/> | 17 <image id="url-fixer-icon"/> |
23 </vbox> | 18 </vbox> |
24 <vbox id="question_container" pack="center"> | 19 <vbox id="url-fixer-question_container" pack="center"> |
25 <description id="question">&urlfixer.survey.question;</description> | 20 <description id="url-fixer-question">&urlfixer.survey.question;</descripti
on> |
26 <description>&urlfixer.survey.note;</description> | 21 <description>&urlfixer.survey.note;</description> |
27 </vbox> | 22 </vbox> |
28 </hbox> | 23 </hbox> |
29 <hbox id="actions"> | 24 <hbox id="url-fixer-actions" pack="end"> |
30 <button dlgtype="accept" onclick="onAccept();window.close();">&urlfixer.surv
ey.accept;</button> | 25 <button id="url-fixer-accept-button">&urlfixer.survey.accept;</button> |
31 <spacer flex="1"/> | 26 <button id="url-fixer-cancel-button">&urlfixer.survey.decline;</button> |
32 <button dlgtype="cancel" onclick="onCancel();window.close();">&urlfixer.surv
ey.decline;</button> | |
33 </hbox> | 27 </hbox> |
34 </panel> | 28 </panel> |
LEFT | RIGHT |