From 5627e731b19377c8883671a19813ace0305d857b Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 19 Jun 2012 18:01:39 +0100 Subject: [PATCH] Comment update --- core/modules/treenodes/macro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/treenodes/macro.js b/core/modules/treenodes/macro.js index 03340af79..6e5a033f3 100644 --- a/core/modules/treenodes/macro.js +++ b/core/modules/treenodes/macro.js @@ -207,7 +207,7 @@ Macro.prototype.refreshInDom = function(changes) { // Check if any of the dependencies of this macro node have changed if(this.dependencies.hasChanged(changes,this.tiddlerTitle)) { // Re-execute the macro if so - // Macros can only auto-refresh if their immediate child is a DOM node + // Macros can only auto-refresh if on of their descendent child has a DOM node var child = this.child; while(!child.domNode && child.child) { child = child.child;