1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 17:40:29 +00:00
This commit is contained in:
Jeremy Ruston 2013-10-21 18:32:29 +01:00
parent e33f588b73
commit 26ac940637

View File

@ -648,7 +648,7 @@ var tweakMacroDefinition = function(nodeList) {
}; };
nodeList[0].children = nodeList.slice(1); nodeList[0].children = nodeList.slice(1);
nodeList.splice(1,nodeList.length-1); nodeList.splice(1,nodeList.length-1);
tweakMacroDefinition(nodeList.children); tweakMacroDefinition(nodeList[0].children);
} }
}; };