From 31c8554d5737ccf9bc999176e32f498c28a64211 Mon Sep 17 00:00:00 2001 From: Michael Mathews Date: Tue, 29 May 2012 20:31:57 +0100 Subject: [PATCH] Fix for @members not appearing in the output. --- templates/haruki/publish.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/haruki/publish.js b/templates/haruki/publish.js index 86eed10b..83ca8e9e 100644 --- a/templates/haruki/publish.js +++ b/templates/haruki/publish.js @@ -43,7 +43,7 @@ return (element.memberof === parentLongname); }) .forEach(function (element, i) { - //console.log((i+1)+': '+element.kind+' '+element.longname+' ('+element.name+')'); + console.log(element); if (element.kind === 'namespace') { if (! parentNode.namespaces) { @@ -113,7 +113,7 @@ } } } - else if (element.kind === 'property') { + else if (element.kind === 'member') { if (! parentNode.properties) { parentNode.properties = { }; }