includes/clientside/static/editor.js
author Dan
Wed, 27 Jun 2007 00:59:42 -0400
changeset 27 dd659f6ba891
parent 1 fe660c52c48f
child 40 723bb7acf914
permissions -rw-r--r--
Converting all tables on new installations to UTF-8; this may break MySQL 4.0 compatibility; several minor cosmetic fixes; set Powered button under Links to "on" by default

// 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);