mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
Fix for @members not appearing in the output.
This commit is contained in:
parent
59655252e1
commit
31c8554d57
@ -43,7 +43,7 @@
|
|||||||
return (element.memberof === parentLongname);
|
return (element.memberof === parentLongname);
|
||||||
})
|
})
|
||||||
.forEach(function (element, i) {
|
.forEach(function (element, i) {
|
||||||
//console.log((i+1)+': '+element.kind+' '+element.longname+' ('+element.name+')');
|
console.log(element);
|
||||||
|
|
||||||
if (element.kind === 'namespace') {
|
if (element.kind === 'namespace') {
|
||||||
if (! parentNode.namespaces) {
|
if (! parentNode.namespaces) {
|
||||||
@ -113,7 +113,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (element.kind === 'property') {
|
else if (element.kind === 'member') {
|
||||||
if (! parentNode.properties) {
|
if (! parentNode.properties) {
|
||||||
parentNode.properties = { };
|
parentNode.properties = { };
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user