Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions tmpl/container.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,7 @@
if (isGlobalPage && members && members.length && members.forEach) {
members = members.filter(function(m) {
return m.longname
&& m.longname.indexOf('module:') !== 0
&& m.access !== 'private';
&& m.longname.indexOf('module:') !== 0;
});
}
if (members && members.length && members.forEach) {
Expand All @@ -196,7 +195,6 @@
if (methods && methods.length && methods.forEach) {
// Remove duplicated definition, keep overwritten by the converter
methods = methods.reduce((acc, method) => {
if(method.access === 'private') return acc
var index = acc.findIndex(m => m.id === method.id)
index < 0 ? acc.push(method) : acc[index] = method
return acc
Expand Down