Mercurial > hg > digilib-old
view xul/content/tools_dialog.xul @ 410:395db075906d
removed mark divs and images, they are added programmatically now;
moved resetParameters() function to baselib.js;
moved all initalization code to onload function;
added "about" div with slots for version number display;
added "overlay" div for better mousemove control (for "zoom area");
added "debug" div and script
author | hertzhaft |
---|---|
date | Tue, 13 Dec 2005 13:36:28 +0100 |
parents | bf945fcf9105 |
children |
line wrap: on
line source
<?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> <dialog id="donothing" title="tool path" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" buttons="accept,cancel" ondialogaccept="return doOK();" ondialogcancel="return doCancel();"> <label control="digilib_path" value="tool path (where you can find digilib.jsp)"/> <textbox id="digilib_path"/> <script> document.getElementById('digilib_path').value=window.arguments[0]; function doOK() { window.arguments[1](document.getElementById('digilib_path').value); return true; } function doCancel() { return true; } </script> </dialog>