[wp-trac] [WordPress Trac] #17334: WP 3.2, Tinymce & toggle fullscreen mode
WordPress Trac
wp-trac at lists.automattic.com
Thu May 12 22:06:15 UTC 2011
#17334: WP 3.2, Tinymce & toggle fullscreen mode
--------------------------+------------------------------
Reporter: arena | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: TinyMCE | Version: 3.2
Severity: normal | Resolution:
Keywords: dev-feedback |
--------------------------+------------------------------
Comment (by arena):
Based on wordpress 3.2 beta 1 i tried to remove the fullscreen button for
the admin pages using the_editor and tinymce.
I did so :
{{{
add_filter('mce_buttons', 'remove_fullscreen');
function remove_fullscreen($items)
{
foreach($items as $k => $v) if ('fullscreen' == $v)
unset($items[$k]);
return $items;
}
}}}
Apparently this remove the fullscreen buttons but is messing the buttons
in the toolbar removing spellchecker, slow/hide kitchen sink, more
misplacing others...
attached are before / after screenshots
--
Ticket URL: <http://core.trac.wordpress.org/ticket/17334#comment:1>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list