Home | History | Annotate | Download | only in js

Lines Matching refs:expand

63       expand();
67 var expand = function() {
259 // Set up expand/collapse behavior
278 // now expand me
372 // Stop expand/collapse behavior when clicking on nav section links (since we're navigating away
2135 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2138 function toggleInherited(linkObj, expand) {
2144 if ( (expand == null && a.hasClass("closed")) || expand ) {
2150 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
2162 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2165 function toggleAllInherited(linkObj, expand) {
2169 if ( (expand == null && a.text() == "[Expand]") || expand ) {
2174 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
2178 a.text("[Expand]");
2188 if (a.text() == "[Expand All]") {
2197 a.text("[Expand All]");
2202 /* Expand all inherited members in the class. Used when initiating page search */
2213 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)