includes/clientside/static/editor.js
author Dan
Fri, 06 Jul 2007 11:45:50 -0400
changeset 48 fc9762553a3c
parent 40 723bb7acf914
child 57 b354deeaa4c4
permissions -rw-r--r--
E-mail address mask engine non-Javascript fallback now picks random substitutions for @ and . to make address more unreadable by bots

// 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'
    }
    tinyMCE.init(options);
  }
}
addOnloadHook(initTinyMCE);