From f5938dc9a6d0f621d42ad88ac46a08aa5ba990c8 Mon Sep 17 00:00:00 2001 From: Serkan Serttop Date: Fri, 18 Jul 2014 04:00:59 +0300 Subject: [PATCH] Fix too small taskdetails text area height Also referenced here https://github.com/hueniverse/postmile/issues/18 --- lib/static/view/js/tasklist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/static/view/js/tasklist.js b/lib/static/view/js/tasklist.js index 528a8f0..15bb8d6 100755 --- a/lib/static/view/js/tasklist.js +++ b/lib/static/view/js/tasklist.js @@ -418,7 +418,7 @@ YUI.add('postmile-tasks-list', function (Y) { // manage size of details input function shrinkDetails(node) { - node.setStyle("height", '5px'); // nominal size for empty line + node.setStyle("height", '15px'); // nominal size for empty line } function expandDetails(node) { // could do this on delete as well // count = node.get('value','').split( '\n' ).length ;