| 1 | <script type="text/javascript"> |
| 2 | tinyMCE.init({ |
| 3 | // General options |
| 4 | mode: "textareas", |
| 5 | theme: "advanced", |
| 6 | plugins: "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager", |
| 7 | |
| 8 | // Theme options |
| 9 | theme_advanced_buttons1: "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", |
| 10 | theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", |
| 11 | theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", |
| 12 | theme_advanced_buttons4: "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage", |
| 13 | theme_advanced_toolbar_location: "top", |
| 14 | theme_advanced_toolbar_align: "left", |
| 15 | theme_advanced_statusbar_location: "bottom", |
| 16 | theme_advanced_resizing: true, |
| 17 | |
| 18 | // Example content CSS (should be your site CSS) |
| 19 | content_css: "css/example.css", |
| 20 | |
| 21 | // Drop lists for link/image/media/template dialogs |
| 22 | template_external_list_url: "js/template_list.js", |
| 23 | external_link_list_url: "js/link_list.js", |
| 24 | external_image_list_url: "js/image_list.js", |
| 25 | media_external_list_url: "js/media_list.js" |
| 26 | |
| 27 | |
| 28 | }); |
| 29 | </script> |
| 30 | |
| 31 | |