Refactored dependency handling

Now each class of dependency can be tracked individually
This commit is contained in:
Jeremy Ruston
2012-02-07 19:03:59 +00:00
parent 10774a724f
commit 95ab295fbb
11 changed files with 111 additions and 64 deletions

View File

@@ -24,7 +24,7 @@ ImageRenderer.prototype.render = function(tiddler,store) {
var ImageParseTree = function(type,text) {
this.type = type;
this.text = text;
this.dependencies = [];
this.dependencies = {};
};
ImageParseTree.prototype.compile = function(type) {