1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!-- tinyMCE --> <script language="javascript" type="text/javascript" src="../tinymce/jscripts/tiny_mce/tiny_mce.js"></script> <script language="javascript" type="text/javascript">
tinyMCE.init({ mode : "textareas", theme : "advanced", force_br_newlines : true, theme_advanced_toolbar_location : "bottom", content_css : "../styletextarea.css", plugins: "autolink,lists,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", theme_advanced_buttons1 : "undo, redo, separator, cut, copy, paste, separator, bold, italic, underline, strikethrough, separator, fontsizeselect, forecolor", theme_advanced_buttons2 : "hr, separator, bullist, numlist, separator, outdent, indent, separator, news, unnews, separator, charmap, separator, removeformat, separator, code, link,unlink,anchor", theme_advanced_buttons3 : "", paste_auto_cleanup_on_paste : true, paste_remove_styles: true, paste_remove_styles_if_webkit: true, paste_strip_class_attributes: true, height : "300px", width : "600px" });
</script> <!-- /tinyMCE -->
|