init

public function init(s:Object):void
Initializes a set of editors. This method will create a bunch of editors based in the input.

Examples

// Initializes a editor using the longer method
tinymce.EditorManager.init({
   some_settings : 'some value'
});

// Initializes a editor instance using the shorter version
tinyMCE.init({
   some_settings : 'some value'
});

Params

Name Type Description
s Object Settings object to be passed to each editor instance.
User Image
  • 2012-05-25 03:33:20

chungwufei

it would be useful if Params are expounded more... like 's' is an Object but never know what the object may contain...