includes/clientside/static/editor.js
author Dan
Sat, 17 Nov 2007 20:31:01 -0500
changeset 263 d57af0b0302e
parent 117 7cfdbb2fd17a
child 335 67bd3121a12e
permissions -rw-r--r--
Major improvements in the security of the CAPTCHA system (no SQL injection or anything like that); fixed denied form submission due to _af_acting on form object wrongly switched to true

// Javascript routines for the page editor

var enano_tinymce_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'
};

var initTinyMCE = function(e)
{
  if ( typeof(tinyMCE) == 'object' )
  {
    if ( !KILL_SWITCH )
    {
      tinyMCE.init(enano_tinymce_options);
    }
  }
}
addOnloadHook(initTinyMCE);