integration.html (1027B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <style> 6 html, body { 7 height: 100%; 8 margin: 0; 9 } 10 11 #tinymce_parent { 12 display: block; 13 height: 100%; 14 min-height: 130px; 15 } 16 17 #noScriptWarning { 18 padding: 10px 8px 4px; 19 font-family: sans-serif; 20 font-size: 12px; 21 } 22 </style> 23 24 <script type="text/javascript" src="tinymce.min.js"></script> 25 <script type="text/javascript" src="locale.js"></script> 26 <script type="text/javascript"> 27 tinyMCE.init({ 28 content_css: "css/integration-content.css", 29 30 toolbar: "bold italic underline | sub sup | removeformat", 31 toolbar_items_size: 'small', 32 menubar: false, 33 resize: false, 34 statusbar: false, 35 36 init_instance_callback: function (ed) { 37 setLocale(ed); 38 zoteroInit(ed); 39 } 40 }); 41 tinyMCE.execCommand("mceAddEditor", true, "tinymce"); 42 </script> 43 </head> 44 <body> 45 <div id="tinymce"></div> 46 </body> 47 </html>