Lines Matching refs:expand
91 expand();
95 var expand = function() {
207 // Traverse up the tree and expand all parent nav-sections
376 // Set up expand/collapse behavior
395 // now expand me
495 // Stop expand/collapse behavior when clicking on nav section links (since we're navigating away
2462 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2465 function toggleInherited(linkObj, expand) {
2471 if ( (expand == null && a.hasClass("closed")) || expand ) {
2477 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
2489 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2492 function toggleAllInherited(linkObj, expand) {
2496 if ( (expand == null && a.text() == "[Expand]") || expand ) {
2501 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
2505 a.text("[Expand]");
2515 if (a.text() == "[Expand All]") {
2524 a.text("[Expand All]");
2529 /* Expand all inherited members in the class. Used when initiating page search */
2540 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)