File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 174
174
// symbols that are assigned to module.exports are not globals, even though they're not a memberof anything
175
175
if (isGlobalPage && members && members.length && members.forEach) {
176
176
members = members.filter(function(m) {
177
- return m.longname && m.longname.indexOf('module:') !== 0;
177
+ return m.longname
178
+ && m.longname.indexOf('module:') !== 0
179
+ && m.access !== 'private';
178
180
});
179
181
}
180
182
if (members && members.length && members.forEach) {
192
194
<?js
193
195
var methods = self.find({kind: 'function', memberof: isGlobalPage ? {isUndefined: true} : doc.longname});
194
196
if (methods && methods.length && methods.forEach) {
197
+ methods = methods.filter(function(m) {
198
+ return m.access !== 'private';
199
+ });
195
200
?>
196
201
<div class='vertical-section'>
197
202
<h1>Methods</h1>
You can’t perform that action at this time.
0 commit comments