From 8724973ada7dd8bc9b4bea171df0932c943223c8 Mon Sep 17 00:00:00 2001 From: Bryan Petty Date: Wed, 25 Jan 2012 06:39:53 +0000 Subject: [PATCH] Added more conveniently placed 'List of All Members' link on all class doc pages in the header summary (using JS). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70463 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/doxygen/wxwidgets.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/doxygen/wxwidgets.js b/docs/doxygen/wxwidgets.js index 714c971dfc..db0f6dba85 100644 --- a/docs/doxygen/wxwidgets.js +++ b/docs/doxygen/wxwidgets.js @@ -44,4 +44,13 @@ $(function() { setCookie('sectionDiv.style.display', display); }); + list_of_members_link = $('a[href$="-members.html"]:first'); + if(list_of_members_link.length) { + summary_div = $('div.header div.summary:first'); + if(summary_div.length) { + summary_div.append(' | '); + summary_div.append(list_of_members_link.clone().text('List of All Members')); + } + } + }); -- 2.47.2