Make WordPress Core

Ticket #29307: 29307.patch

File 29307.patch, 1.7 KB (added by iseulde, 10 years ago)
  • src/wp-admin/edit-form-advanced.php

     
    496496        'dfw' => true,
    497497        'drag_drop_upload' => true,
    498498        'tabfocus_elements' => 'insert-media-button-1,save-post',
    499         'editor_height' => 360,
     499        'editor_height' => 300,
    500500        'tinymce' => array(
    501501                'resize' => false,
    502502                'wp_autoresize_on' => ( ! empty( $_wp_autoresize_on ) && get_user_setting( 'editor_expand', 'on' ) === 'on' ),
  • src/wp-includes/class-wp-editor.php

     
    112112                if ( empty( $set['editor_height'] ) )
    113113                        return $set;
    114114
    115                 if ( 'content' === $editor_id ) {
     115                if ( 'content' === $editor_id && empty( $set['tinymce']['wp_autoresize_on'] ) ) {
    116116                        // A cookie (set when a user resizes the editor) overrides the height.
    117117                        $cookie = (int) get_user_setting( 'ed_size' );
    118118
  • src/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js

     
    108108                // Resize content element
    109109                if (resizeHeight !== oldSize) {
    110110                        deltaSize = resizeHeight - oldSize;
     111                        console.log( resizeHeight, oldSize, parseInt( DOM.getStyle( editor.iframeElement, 'height', true ), 10 ) );
    111112                        DOM.setStyle( editor.iframeElement, 'height', resizeHeight + 'px' );
    112113                        oldSize = resizeHeight;
    113114