Closed ellatrix closed 10 years ago
The styleselect TinyMCE menu (with h1 etc.) doesn't collapse when you scroll the window and the toolbars are fixed. The colour buttons do collapse, because you can use editor.controlManager.buttons... But it doesn't include styleselect.
styleselect
editor.controlManager.buttons
tinymce.each( editorInstance.controlManager.buttons, function( button ) { if ( button._active && ( button.type === 'colorbutton' || button.type === 'panelbutton' || button.type === 'menubutton' ) ) { button.hidePanel(); } } );
The
styleselect
TinyMCE menu (with h1 etc.) doesn't collapse when you scroll the window and the toolbars are fixed. The colour buttons do collapse, because you can useeditor.controlManager.buttons
... But it doesn't includestyleselect
.