Ticket #12207: toggle_wordpress_adv_hidden.patch
| File toggle_wordpress_adv_hidden.patch, 693 bytes (added by , 16 years ago) |
|---|
-
wp-includes/js/tinymce/plugins/wordpress/editor_plugin.dev.js
19 19 // Hides the specified toolbar and resizes the iframe 20 20 ed.onPostRender.add(function() { 21 21 var adv_toolbar = ed.controlManager.get(tbId); 22 if ( ed.getParam('wordpress_adv_hidden', 1) && adv_toolbar ) {22 if ( parseInt(ed.getParam('wordpress_adv_hidden', 1)) && adv_toolbar ) { 23 23 DOM.hide(adv_toolbar.id); 24 24 t._resizeIframe(ed, tbId, 28); 25 25 }