Skip to content
This repository has been archived by the owner on Nov 3, 2018. It is now read-only.

Fix too small taskdetails text area height #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/static/view/js/tasklist.js
Original file line number Diff line number Diff line change
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