diff --git a/config/jsdoc/api/plugins/events.js b/config/jsdoc/api/plugins/events.js index 6656d7b58c..03761a9af0 100644 --- a/config/jsdoc/api/plugins/events.js +++ b/config/jsdoc/api/plugins/events.js @@ -29,7 +29,7 @@ exports.handlers = { event = doclet.fires[j].replace('event:', ''); if (events[event]) { fires.push.apply(fires, events[event]); - } else { + } else if (doclet.fires[j] !== 'event:ObjectEvent') { fires.push(doclet.fires[j]); } } @@ -40,4 +40,3 @@ exports.handlers = { } }; -