Make WordPress Core

Ticket #27761: 27761.4.diff

File 27761.4.diff, 887 bytes (added by morganestes, 11 years ago)
  • wp-admin/js/dashboard.js

     
    124124        $( '.meta-box-sortables' ).sortable( 'option', 'containment', 'document' );
    125125
    126126        function autoResizeTextarea() {
     127                if ( document.documentMode && document.documentMode < 9 ) {
     128                        return;
     129                }
     130
    127131                // Add a hidden div. We'll copy over the text from the textarea to measure its height.
    128132                $('body').append( '<div class="quick-draft-textarea-clone" style="display: none;"></div>' );
    129133
     
    173177                                editorHeight = cloneHeight;
    174178                        }
    175179
    176                         // No scrollbars as we change height
    177                         editor.css('overflow-y', 'hidden');
     180                        // No scrollbars as we change height, not for IE < 9
     181                        editor.css('overflow', 'hidden');
    178182
    179183                        $this.css('height', editorHeight + 'px');
    180184                });