Make WordPress Core

Ticket #32197: 32197.4.patch

File 32197.4.patch, 4.3 KB (added by iseulde, 10 years ago)
  • src/wp-admin/css/edit.css

     
    380380        position: relative;
    381381}
    382382
    383 #content-textarea-clone {
    384         z-index: -1;
    385         position: absolute;
    386         top: 0;
    387         visibility: hidden;
    388         overflow: hidden;
    389         max-width: 100%;
    390         border: 1px solid transparent;
    391 }
    392 
    393 .wp-fullscreen-wrap #content-textarea-clone {
    394         display: none;
    395 }
    396 
    397383/* editor-expand.js override */
    398384.wp-fullscreen-wrap {
    399385        padding-top: 0 !important;
  • src/wp-admin/js/editor-expand.js

     
    1515                        $visualEditor = $(),
    1616                        $textTop = $( '#ed_toolbar' ),
    1717                        $textEditor = $( '#content' ),
    18                         $textEditorClone = $( '<div id="content-textarea-clone"></div>' ),
     18                        textEditor = $textEditor[0],
     19                        textEditorLength = 0,
    1920                        $bottom = $( '#post-status-info' ),
    2021                        $menuBar = $(),
    2122                        $statusBar = $(),
     
    5253                                sideSortablesHeight: 0
    5354                        };
    5455
    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 
    6556                function getHeights() {
    6657                        var windowWidth = $window.width();
    6758
     
    8475                        }
    8576                }
    8677
    87                 function textEditorKeyup( event ) {
    88                         var VK = jQuery.ui.keyCode,
    89                                 key = event.keyCode,
    90                                 range = document.createRange(),
    91                                 selStart = $textEditor[0].selectionStart,
    92                                 selEnd = $textEditor[0].selectionEnd,
    93                                 textNode = $textEditorClone[0].firstChild,
    94                                 buffer = 10,
    95                                 offset, cursorTop, cursorBottom, editorTop, editorBottom;
    96 
    97                         if ( selStart && selEnd && selStart !== selEnd ) {
    98                                 return;
    99                         }
    100 
    101                         // These are not TinyMCE ranges.
    102                         try {
    103                                 range.setStart( textNode, selStart );
    104                                 range.setEnd( textNode, selEnd + 1 );
    105                         } catch ( ex ) {}
    106 
    107                         offset = range.getBoundingClientRect();
    108 
    109                         if ( ! offset.height ) {
    110                                 return;
    111                         }
    112 
    113                         cursorTop = offset.top - buffer;
    114                         cursorBottom = cursorTop + offset.height + buffer;
    115                         editorTop = heights.adminBarHeight + heights.toolsHeight + heights.textTopHeight;
    116                         editorBottom = heights.windowHeight - heights.bottomHeight;
    117 
    118                         if ( cursorTop < editorTop && ( key === VK.UP || key === VK.LEFT || key === VK.BACKSPACE ) ) {
    119                                 window.scrollTo( window.pageXOffset, cursorTop + window.pageYOffset - editorTop );
    120                         } else if ( cursorBottom > editorBottom ) {
    121                                 window.scrollTo( window.pageXOffset, cursorBottom + window.pageYOffset - editorBottom );
    122                         }
    123                 }
    124 
    12578                function textEditorResize() {
     79                        var length, pageYOffset;
     80
    12681                        if ( ( mceEditor && ! mceEditor.isHidden() ) || ( ! mceEditor && initialMode === 'tinymce' ) ) {
    12782                                return;
    12883                        }
    12984
    130                         var textEditorHeight = $textEditor.height(),
    131                                 hiddenHeight;
     85                        length = textEditor.value.length;
    13286
    133                         $textEditorClone.width( $textEditor.width() - 22 );
    134                         $textEditorClone.text( $textEditor.val() + '&nbsp;' );
     87                        if ( length !== textEditorLength ) {
     88                                if ( length < textEditorLength ) {
     89                                        pageYOffset = window.pageYOffset;
     90                                        textEditor.style.height = 'auto';
     91                                }
    13592
    136                         hiddenHeight = $textEditorClone.height();
     93                                textEditor.style.height = textEditor.scrollHeight + 'px';
    13794
    138                         if ( hiddenHeight < autoresizeMinHeight ) {
    139                                 hiddenHeight = autoresizeMinHeight;
    140                         }
     95                                if ( length < textEditorLength ) {
     96                                        window.scrollTo( window.pageXOffset, pageYOffset );
     97                                }
    14198
    142                         if ( hiddenHeight === textEditorHeight ) {
    143                                 return;
     99                                adjust();
    144100                        }
    145101
    146                         $textEditor.height( hiddenHeight );
    147 
    148                         adjust();
     102                        textEditorLength = length;
    149103                }
    150104
    151105                // We need to wait for TinyMCE to initialize.
     
    603557                                        $textEditor.css( {
    604558                                                marginTop: heights.textTopHeight
    605559                                        } );
    606 
    607                                         $textEditorClone.width( contentWrapWidth - 20 - ( borderWidth * 2 ) );
    608560                                }
    609561                        }
    610562                }
     
    660612                                });
    661613
    662614                        $textEditor.on( 'focus.editor-expand input.editor-expand propertychange.editor-expand', textEditorResize );
    663                         $textEditor.on( 'keyup.editor-expand', textEditorKeyup );
    664615                        mceBind();
    665616
    666617                        // Adjust when entering/exiting fullscreen mode.