Changeset 27602
- Timestamp:
- 03/19/2014 02:29:12 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r27545 r27602 43 43 44 44 if ( state === 'hide' ) { 45 setUserSetting('hidetb', ' 1');45 setUserSetting('hidetb', '0'); 46 46 wpAdvButton && wpAdvButton.active( false ); 47 47 } else { 48 setUserSetting('hidetb', ' 0');48 setUserSetting('hidetb', '1'); 49 49 wpAdvButton && wpAdvButton.active( true ); 50 50 } … … 63 63 // Hide the toolbars after loading 64 64 editor.on( 'PostRender', function() { 65 if ( getUserSetting('hidetb', ' 1') === '1' ) {65 if ( getUserSetting('hidetb', '0') === '0' ) { 66 66 toggleToolbars( 'hide' ); 67 67 }
Note: See TracChangeset
for help on using the changeset viewer.