From f70f020c54c7edf09cd163bdb58b8e72e14c6b1c Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 23 Jan 2014 18:02:06 +0000 Subject: [PATCH] Properly detect line height of Quick Draft textarea. props batmoo. fixes #26915 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@27021 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/dashboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/js/dashboard.js b/src/wp-admin/js/dashboard.js index f88be70fd9..4d4eb50d0c 100644 --- a/src/wp-admin/js/dashboard.js +++ b/src/wp-admin/js/dashboard.js @@ -159,9 +159,9 @@ jQuery(document).ready( function($) { editor.on('focus input propertychange', function() { var $this = $(this), //   is to ensure that the height of a final trailing newline is included. - textareaContent = $this.val().replace(/\n/g, '
') + ' ', + textareaContent = $this.val() + ' ', // 2px is for border-top & border-bottom - cloneHeight = clone.css('width', $this.css('width')).html(textareaContent).outerHeight() + 2; + cloneHeight = clone.css('width', $this.css('width')).text(textareaContent).outerHeight() + 2; // Default to having scrollbars editor.css('overflow-y', 'auto');