Changing TinyMCE config - location of edit bar and available options

Signed-off-by: Chris Cormack <crc@liblime.com>
This commit is contained in:
Russel Garlick 2007-09-14 11:39:28 +12:00 committed by Chris Cormack
parent 6175e99598
commit 14c72d55c9

View file

@ -5,6 +5,19 @@
<script language="javascript" type="text/javascript">
tinyMCE.init({
mode : "textareas"
theme : "advanced",
plugins : "table,save,advhr,advlink,iespell,insertdatetime,preview,searchreplace,print,contextmenu",
theme_advanced_buttons1_add_before : "save,separator",
theme_advanced_buttons1_add : "",
theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator",
theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator",
theme_advanced_buttons3_add_before : "tablecontrols,separator",
theme_advanced_buttons3_add : "iespell,advhr,separator,print",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
plugin_insertdate_dateFormat : "%Y-%m-%d",
plugin_insertdate_timeFormat : "%H:%M:%S",
});
</script>
</head>