##// END OF EJS Templates
Merge pull request #7204 from jasongrout/widget-warning2...
Merge pull request #7204 from jasongrout/widget-warning2 Make the widget warning brief and easy to filter

File last commit:

r19510:2bb1f2b3
r19550:ca2f5b76 merge
Show More
jsdoc_plugin.js
11 lines | 448 B | application/javascript | JavascriptLexer
exports.handlers = {
newDoclet: function(e) {
// e.doclet will refer to the newly created doclet
// you can read and modify properties of that doclet if you wish
if (typeof e.doclet.name === 'string') {
if (e.doclet.name[0] == '_') {
console.log('Private method "' + e.doclet.longname + '" not documented.');
e.doclet.memberof = '<anonymous>';
}
}
}
};