From 58305baf3e6c049f74db44a27551aac89532a529 Mon Sep 17 00:00:00 2001 From: Anand Thakker Date: Tue, 21 Jun 2016 09:06:03 -0400 Subject: [PATCH] Suppress signature and params in @interface docs Related issue upstream: https://github.com/documentationjs/documentation/issues/461 --- docs/_theme/section.hbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_theme/section.hbs b/docs/_theme/section.hbs index 0bbf0c5a4e2..ef1cdd26075 100644 --- a/docs/_theme/section.hbs +++ b/docs/_theme/section.hbs @@ -16,7 +16,7 @@ <%= md(section.description) %> - <% if (section.kind === 'class') { %> + <% if (section.kind === 'class' && !section.interface) { %>
<%= signature(section, true) %>
<% } %> @@ -35,7 +35,7 @@ <% if (section.copyright) { %>
Copyright: <%- section.copyright %>
<% }%> <% if (section.since) { %>
Since: <%- section.since %>
<% }%> - <% if (section.params) { %> + <% if (section.params && !(section.kind === 'class' && section.interface)) { %>
Parameters
<% section.params.forEach(function(param) { %>