Refactoring renderer "tree" array to "nodes"

This commit is contained in:
Jeremy Ruston 2012-03-03 18:39:13 +00:00
parent 2ecb1f670c
commit 4a73317193
8 changed files with 11 additions and 11 deletions

View file

@ -60,7 +60,7 @@ JavaScriptParser.prototype.parse = function(type,code) {
classes.push("javascript-line-comment");
content.push(Renderer.TextNode("//"));
}
content.push.apply(content,self.store.parseText("text/x-tiddlywiki",text).tree);
content.push.apply(content,self.store.parseText("text/x-tiddlywiki",text).nodes);
if(comment.type === "Block") {
content.push(Renderer.TextNode("*/"));
} else {