# HG changeset patch # User Nicholas Jillings # Date 1432714545 -3600 # Node ID 7cb875d41d7f74978cba346304ca9ca23eaabd90 # Parent d6303bdef1657184ebc34943ad6146650578a2a4 console log includes commentQuestion. Text input boxes width inside borders diff -r d6303bdef165 -r 7cb875d41d7f 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 d6303bdef165 -r 7cb875d41d7f 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);