Home | History | Annotate | Download | only in js

Lines Matching refs:expand

90       expand();
94 var expand = function() {
362 // Set up expand/collapse behavior
579 // now expand me
587 // Stop expand/collapse behavior when clicking on nav section links
616 // Traverse up the tree and expand all parent nav-sections
2819 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2822 function toggleInherited(linkObj, expand) {
2828 if ( (expand == null && a.hasClass("closed")) || expand ) {
2834 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
2846 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2849 function toggleAllInherited(linkObj, expand) {
2853 if ( (expand == null && a.text() == "[Expand]") || expand ) {
2858 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
2862 a.text("[Expand]");
2872 if (a.text() == "[Expand All]") {
2881 a.text("[Expand All]");
2886 /* Expand all inherited members in the class. Used when initiating page search */
2897 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)