Skip to content

Commit

Permalink
Fix too small taskdetails text area height
Browse files Browse the repository at this point in the history
Also referenced here outmoded/postmile#18
  • Loading branch information
serkanserttop committed Jul 18, 2014
1 parent b606cd6 commit f5938dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/static/view/js/tasklist.js
Expand Up @@ -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 ;
Expand Down

0 comments on commit f5938dc

Please sign in to comment.