realization how aCallAll works
This commit is contained in:
parent
372063295f
commit
9abb85799c
|
@ -418,7 +418,12 @@ function getHTMLFromAtext(pad, atext, authorColors)
|
||||||
attribLine: attribLines[i],
|
attribLine: attribLines[i],
|
||||||
text: textLines[i]
|
text: textLines[i]
|
||||||
}, function(err, newLineContent){
|
}, 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
|
// modified lineContent here
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue