From 6c5af88247ef87c5e1aaaf61ef0368dfdfa88821 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Thu, 26 Apr 2012 14:52:30 +0300 Subject: [PATCH] Fix showing hidden members when navigating to them. In addition to making the member itself visible, we also make its containing section visible if needed. --- template/app/view/cls/Overview.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/template/app/view/cls/Overview.js b/template/app/view/cls/Overview.js index e4bdf185..b0fec236 100644 --- a/template/app/view/cls/Overview.js +++ b/template/app/view/cls/Overview.js @@ -39,9 +39,18 @@ Ext.define('Docs.view.cls.Overview', { if (el) { var isMember = el.hasCls("member"); - // first make the element visible and expanded. - // For example a private member might be hidden initially so we can't scroll to it. + // First make the element visible. + // For example a private member might be hidden initially + // so we can't scroll to it. But the element might be + // inside a section that's fully hidden, in such case we + // also make the section visible. el.show(); + if (!el.isVisible(true)) { + el.up(".subsection").show(); + el.up(".members-section").show(); + } + + // expand the element if (isMember && el.down(".expandable")) { el.addCls('open'); } -- GitLab