Lines Matching refs:expand
90 expand();
94 var expand = function() {
355 // Set up expand/collapse behavior
374 // now expand me
474 // Stop expand/collapse behavior when clicking on nav section links (since we're navigating away
595 // Traverse up the tree and expand all parent nav-sections
2692 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2695 function toggleInherited(linkObj, expand) {
2701 if ( (expand == null && a.hasClass("closed")) || expand ) {
2707 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
2719 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2722 function toggleAllInherited(linkObj, expand) {
2726 if ( (expand == null && a.text() == "[Expand]") || expand ) {
2731 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
2735 a.text("[Expand]");
2745 if (a.text() == "[Expand All]") {
2754 a.text("[Expand All]");
2759 /* Expand all inherited members in the class. Used when initiating page search */
2770 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)