diff -r 902822492a68 -r fe660c52c48f includes/clientside/static/editor.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/includes/clientside/static/editor.js Wed Jun 13 16:07:17 2007 -0400 @@ -0,0 +1,22 @@ +// Javascript routines for the page editor + +function initTinyMCE(e) +{ + if ( typeof(tinyMCE) == 'object' ) + { + tinyMCE.init({ + mode : "exact", + elements : '', + plugins : 'table', + theme_advanced_resize_horizontal : false, + theme_advanced_resizing : true, + theme_advanced_toolbar_location : "top", + theme_advanced_toolbar_align : "left", + theme_advanced_buttons1_add : "fontselect,fontsizeselect", + theme_advanced_buttons3_add_before : "tablecontrols,separator", + theme_advanced_statusbar_location : 'bottom' + }); + } +} +addOnloadHook(initTinyMCE); +