From e050c905e2fa745cb0118e13db7f5363d9c1f300 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Thu, 15 May 2014 01:52:04 +0200 Subject: [PATCH] Do not include oli.* symbols in the inheritance chain --- apidoc/plugins/api.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apidoc/plugins/api.js b/apidoc/plugins/api.js index 6d653f993f..3d45b13918 100644 --- a/apidoc/plugins/api.js +++ b/apidoc/plugins/api.js @@ -65,8 +65,10 @@ function includeAugments(doclet) { } }); } - cls._hideConstructor = true; - delete cls.undocumented; + if (cls.longname.indexOf('oli.') !== 0) { + cls._hideConstructor = true; + delete cls.undocumented; + } } } }