realization how aCallAll works

This commit is contained in:
John McLear 2015-01-24 04:31:50 +00:00
parent 372063295f
commit 9abb85799c
1 changed files with 6 additions and 1 deletions

View File

@ -418,7 +418,12 @@ function getHTMLFromAtext(pad, atext, authorColors)
attribLine: attribLines[i],
text: textLines[i]
}, function(err, newLineContent){
if(newLineContent.length !== 0) lineContent = newLineContent[0];
//new Line Content is an array of each of the responses from aCallAll.. We should return a function to it
console.error(newLineContent);
if(newLineContent.length !== 0){
console.error("lC", newLineContent[0]);
lineContent = newLineContent[0];
}
// modified lineContent here
});