includes/clientside/static/editor.js
author Dan
Thu, 09 Aug 2007 12:26:16 -0400
changeset 85 7c68a18a27be
parent 57 b354deeaa4c4
child 117 7cfdbb2fd17a
permissions -rw-r--r--
AJAX comments are now paginated; plugin manager can now show system plugins; typo in installer corrected; links in oxygen/stpatty/admin footers changed to "About Enano" page; 1.0.1 release candidate

// Javascript routines for the page editor

var initTinyMCE = function(e)
{
  if ( typeof(tinyMCE) == 'object' )
  {
    var options = {
      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'
    }
    if ( !KILL_SWITCH )
    {
      tinyMCE.init(options);
    }
  }
}
addOnloadHook(initTinyMCE);