Make WordPress Core

Ticket #32197: 32197.patch

File 32197.patch, 2.4 KB (added by iseulde, 10 years ago)
  • src/wp-admin/js/editor-expand.js

     
    1515                        $visualEditor = $(),
    1616                        $textTop = $( '#ed_toolbar' ),
    1717                        $textEditor = $( '#content' ),
    18                         $textEditorClone = $( '<div id="content-textarea-clone"></div>' ),
    1918                        $bottom = $( '#post-status-info' ),
    2019                        $menuBar = $(),
    2120                        $statusBar = $(),
     
    5251                                sideSortablesHeight: 0
    5352                        };
    5453
    55                 $textEditorClone.insertAfter( $textEditor );
    56 
    57                 $textEditorClone.css( {
    58                         'font-family': $textEditor.css( 'font-family' ),
    59                         'font-size': $textEditor.css( 'font-size' ),
    60                         'line-height': $textEditor.css( 'line-height' ),
    61                         'white-space': 'pre-wrap',
    62                         'word-wrap': 'break-word'
    63                 } );
    64 
    6554                function getHeights() {
    6655                        var windowWidth = $window.width();
    6756
     
    8574                }
    8675
    8776                function textEditorKeyup( event ) {
     77                        return;
     78
    8879                        var VK = jQuery.ui.keyCode,
    8980                                key = event.keyCode,
    9081                                range = document.createRange(),
     
    123114                }
    124115
    125116                function textEditorResize() {
     117                        var htmlTop, bodyTop, textEditor, height;
     118
    126119                        if ( ( mceEditor && ! mceEditor.isHidden() ) || ( ! mceEditor && initialMode === 'tinymce' ) ) {
    127120                                return;
    128121                        }
    129122
    130                         var textEditorHeight = $textEditor.height(),
    131                                 hiddenHeight;
     123                        htmlTop = document.documentElement.scrollTop;
     124                        bodyTop = document.body.scrollTop;
    132125
    133                         $textEditorClone.width( $textEditor.width() - 22 );
    134                         $textEditorClone.text( $textEditor.val() + '&nbsp;' );
     126                        textEditor = $textEditor[0];
     127                        height = textEditor.style.height;
    135128
    136                         hiddenHeight = $textEditorClone.height();
     129                        textEditor.style.height = 'auto';
     130                        textEditor.style.height = textEditor.scrollHeight + 'px';
    137131
    138                         if ( hiddenHeight < autoresizeMinHeight ) {
    139                                 hiddenHeight = autoresizeMinHeight;
    140                         }
     132                        document.documentElement.scrollTop = htmlTop;
     133                        document.body.scrollTop = bodyTop;
    141134
    142                         if ( hiddenHeight === textEditorHeight ) {
    143                                 return;
     135                        if ( height !== textEditor.style.height ) {
     136                                adjust();
    144137                        }
    145 
    146                         $textEditor.height( hiddenHeight );
    147 
    148                         adjust();
    149138                }
    150139
    151140                // We need to wait for TinyMCE to initialize.
     
    603592                                        $textEditor.css( {
    604593                                                marginTop: heights.textTopHeight
    605594                                        } );
    606 
    607                                         $textEditorClone.width( contentWrapWidth - 20 - ( borderWidth * 2 ) );
    608595                                }
    609596                        }
    610597                }