Topic: How do I configure tinymce in Rails using tiny_mce.yml?
At the moment I'm configuring tinymce in all my controllers using:
uses_tiny_mce(:options => {:theme => 'advanced',
:browsers => %w{msie gecko},
:theme_advanced_toolbar_location => "top",
:theme_advanced_toolbar_align => "left",
:theme_advanced_resizing => true,
:theme_advanced_resize_horizontal => false,
:paste_auto_cleanup_on_paste => true,
:theme_advanced_buttons1 => %w{formatselect fontselect fontsizeselect bold italic underline strikethrough separator justifyleft justifycenter justifyright indent outdent separator bullist numlist forecolor backcolor separator link unlink image undo redo},
:theme_advanced_buttons2 => [],
:theme_advanced_buttons3 => [],
:plugins => %w{contextmenu paste}},
:only => [:new, :create, :edit, :update])I've tried setting up the global configs in the tiny_mce.yml (in config directory) but it doesn't seem to be using them. Do I have to tell tinymce to use this file or is there something wrong with my yaml?
Last edited by giannichan (2010-05-30 06:08:12)