bdf292ccfce9b52393934f6b2a25be2a41a98c82
[citadel.git] / webcit / static / t / richedit.html
1 <script type="text/javascript" src="tiny_mce/tiny_mce.js"></script>
2 <script type="text/javascript">
3 tinyMCE.init({
4         mode : "textareas",
5         width : "99%",
6         browsers : "msie,gecko,safari,opera",
7         theme : "advanced",
8         plugins : "iespell",
9         theme_advanced_buttons1 : "bold, italic, underline, strikethrough, justifyleft, justifycenter, justifyright, justifyfull, blockquote, bullist, numlist, cut, copy, paste, link, image, help, forecolor, iespell, code",
10         theme_advanced_buttons2 : "",
11         theme_advanced_buttons3 : "",
12         content_css : "static/webcit-tinymce.css",
13         entity_encoding : "raw"
14 });
15 </script>