# HG changeset patch # User Nicholas Jillings # Date 1432714545 -3600 # Node ID a164ca5c2ec3d9ff8520ed98db9ac3d01bd85ae4 # Parent 21381e163787a197ba6d3c26ca315394c68418e8 console log includes commentQuestion. Text input boxes width inside borders diff -r 21381e163787 -r a164ca5c2ec3 ape.css --- a/ape.css Wed May 27 09:10:20 2015 +0100 +++ b/ape.css Wed May 27 09:15:45 2015 +0100 @@ -108,3 +108,8 @@ border-style: solid; background-color: #fff; } + +textarea.trackComment { + width: 618px; + margin-right:15px; +} diff -r 21381e163787 -r a164ca5c2ec3 ape.js --- a/ape.js Wed May 27 09:10:20 2015 +0100 +++ b/ape.js Wed May 27 09:15:45 2015 +0100 @@ -807,7 +807,7 @@ cqHolder.id = commentQuestion[i].id; comment.textContent = commentQuestion[i].children[2].value; question.textContent = commentQuestion[i].children[0].textContent; - console.log('Question ' + i + ': ' + commentObjects[i].children[2].value); // DEBUG/SAFETY + console.log('Question ' + i + ': ' + commentQuestion[i].children[2].value); // DEBUG/SAFETY cqHolder.appendChild(question); cqHolder.appendChild(comment); xmlDoc.appendChild(cqHolder);