Home | History | Annotate | Download | only in js

Lines Matching refs:expand

94       expand();
98 var expand = function() {
414 // Set up expand/collapse behavior
571 // now expand me
579 // Stop expand/collapse behavior when clicking on nav section links
630 // Traverse up the tree and expand all parent nav-sections
3218 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
3221 function toggleInherited(linkObj, expand) {
3227 if ( (expand == null && a.hasClass("closed")) || expand ) {
3233 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
3245 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
3248 function toggleAllInherited(linkObj, expand) {
3252 if ( (expand == null && a.text() == "[Expand]") || expand ) {
3257 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
3261 a.text("[Expand]");
3271 if (a.text() == "[Expand All]") {
3280 a.text("[Expand All]");
3285 /* Expand all inherited members in the class. Used when initiating page search */
3296 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)