www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

note.xul (776B)


      1 <?xml version="1.0"?>
      2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
      3 <?xml-stylesheet href="chrome://zotero/skin/zotero.css" type="text/css"?>
      4 
      5 <!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd">
      6 
      7 <window
      8     id="zotero-note-window"
      9     orient="vertical"
     10 	width="400"
     11 	height="350"
     12 	title="&zotero.items.menu.attach.note;"
     13 	persist="screenX screenY width height"
     14 	windowtype="zotero:note"
     15     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
     16 
     17 	<script src="include.js"/>
     18 	<script src="note.js"/>
     19 
     20 	<keyset>
     21 		<key id="key_close" key="W" modifiers="accel" command="cmd_close"/>
     22 	</keyset>
     23 	<command id="cmd_close" oncommand="window.close();"/>
     24 	
     25 	<zoteronoteeditor id="zotero-note-editor" flex="1" onerror="onError()"/>
     26 </window>