From e22e40001d476304840f99c18f0405943610bf8d Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 13 Apr 2014 18:24:25 +0000 Subject: [PATCH] Don't auto-resize Quick Draft textarea in IE < 9. Avoids IE8 crash. props morganestes. fixes #27761. git-svn-id: https://develop.svn.wordpress.org/trunk@28103 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/dashboard.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/js/dashboard.js b/src/wp-admin/js/dashboard.js index 47bc4481d2..1029b0d096 100644 --- a/src/wp-admin/js/dashboard.js +++ b/src/wp-admin/js/dashboard.js @@ -124,6 +124,10 @@ jQuery(document).ready( function($) { $( '.meta-box-sortables' ).sortable( 'option', 'containment', 'document' ); function autoResizeTextarea() { + if ( document.documentMode && document.documentMode < 9 ) { + return; + } + // Add a hidden div. We'll copy over the text from the textarea to measure its height. $('body').append( '' ); @@ -173,8 +177,8 @@ jQuery(document).ready( function($) { editorHeight = cloneHeight; } - // No scrollbars as we change height - editor.css('overflow-y', 'hidden'); + // No scrollbars as we change height, not for IE < 9 + editor.css('overflow', 'hidden'); $this.css('height', editorHeight + 'px'); });