author | Michael Krelin <hacker@klever.net> | 2006-09-30 18:27:38 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-09-30 18:27:38 (UTC) |
commit | 01fbc99cb713a0c4656f33949b2949bf7403656b (patch) (side-by-side diff) | |
tree | 2ee9c07db4c6c7c329f97e56615672ca2fc3e462 /content/photoset-props.xul | |
parent | 4f5e775ff24baf34b3425e93bfeac4a436b4b525 (diff) | |
download | fireflix-01fbc99cb713a0c4656f33949b2949bf7403656b.zip fireflix-01fbc99cb713a0c4656f33949b2949bf7403656b.tar.gz fireflix-01fbc99cb713a0c4656f33949b2949bf7403656b.tar.bz2 |
more code beauty/performance enhancements
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@171 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | content/photoset-props.xul | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/photoset-props.xul b/content/photoset-props.xul index e8f6d13..2efa9e6 100644 --- a/content/photoset-props.xul +++ b/content/photoset-props.xul @@ -1,38 +1,39 @@ <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <?xsml-stylesheet href="fireflix.css" type="text/css"?> <!DOCTYPE dialog SYSTEM "chrome://fireflix/locale/fireflix.dtd"> <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="photoset_props" buttons="accept,cancel" defaultbutton="accept" title="&photosetprops.title;" onload="psetprops.init()" ondialogaccept="psetprops.on_accept()" > + <script src="util.js" type="application/x-javascript"/> <script src="photoset-props.js" type="application/x-javascript"/> <commandset> <command id="cmd_select_picture" oncommand="psetprops.on_select_picture(event)"/> </commandset> <hbox class="wholething"> <vbox> <menulist id="primary_picture_list" hidden="true" sizetopopup="always"/> <hbox pack="center"> <box width="100" pack="center"> <image id="primary_picture" hidden="true"/> </box> </hbox> </vbox> <vbox flex="1" minwidth="300"> <label control="set_title" value="&photosetprops.set_title.label;"/> <textbox id="set_title" /> <label control="set_desc" value="&photosetprops.set_desc.label;"/> <textbox id="set_desc" multiline="true" rows="5" /> </vbox> </hbox> </dialog> |