comparison xul/content/tools_dialog.xul @ 203:bf945fcf9105

restarting with version control of xul sidebar/toolbar
author luginbue
date Fri, 27 Feb 2004 11:24:53 +0100
parents
children
comparison
equal deleted inserted replaced
202:7501034e54e1 203:bf945fcf9105
1 <?xml version="1.0"?>
2
3 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
4
5 <dialog id="donothing" title="tool path"
6 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
7 buttons="accept,cancel"
8 ondialogaccept="return doOK();"
9 ondialogcancel="return doCancel();">
10
11 <label control="digilib_path" value="tool path (where you can find digilib.jsp)"/>
12 <textbox id="digilib_path"/>
13 <script>
14 document.getElementById('digilib_path').value=window.arguments[0];
15
16 function doOK()
17 {
18 window.arguments[1](document.getElementById('digilib_path').value);
19 return true;
20 }
21
22 function doCancel()
23 {
24 return true;
25 }
26
27 </script>
28
29 </dialog>