changeset 1630:a164ca5c2ec3

console log includes commentQuestion. Text input boxes width inside borders
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Wed, 27 May 2015 09:15:45 +0100
parents 21381e163787
children 91a75ec7a7c0
files ape.css ape.js
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
+}
--- 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);