TinyMCE Class
-
Hi what’s the class to add to TinyMCE as it appears to not be working on the frontend of my ForumEngine theme…
Here’s a snippet of the code holding all the buttons (classes) for the frontend editor as far as I know.
function editor_settings($args = array()){ $buttons = apply_filters( 'fe_editor_buttons' , 'bold,|,italic,|,underline,|,bullist,|,link,unlink,|,feimage,fecode' ); return array( 'quicktags' => false, 'media_buttons' => false, 'tabindex' => 5, 'textarea_name' => 'post_content', 'tinymce' => array( 'height' => 150, 'autoresize_min_height' => 150, 'force_p_newlines' => false, 'statusbar' => false, 'force_br_newlines' => false, 'forced_root_block' => '', 'toolbar1' => $buttons, 'toolbar2' => '', 'toolbar3' => '', 'setup' => 'function(ed) { ed.on("keyup", function(e) { if ( typeof hasChange == "undefined" ) { hasChange = true; }
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘TinyMCE Class’ is closed to new replies.