Lines Matching full:nav
53 $("#side-nav").css({'padding':'0'});
54 $("#nav-tree").css({'overflow-y': 'auto'});
87 $("#packages-nav").css({width:navWidth});
98 $("#packages-nav").css({height:parseInt(packageHeight) - 6 + "px"}); //move 6px to give space for the resize handle
100 $("#nav-tree").css({height:swapperHeight + "px"});
132 $("#side-nav").css({position:"absolute",left:0});
134 resizePackagesNav = $("#resize-packages-nav");
135 classesNav = $("#classes-nav");
136 sidenav = $("#side-nav");
137 devdocNav = $("#devdoc-nav");
149 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizePackagesHeight(); } });
150 $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } });
155 } else if ($(".side-nav-resizable").length) {
185 var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
191 link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory + 1)+"index.html']");
208 // if we're in a normal nav link (<li><a>) and the parent <ul> is hidden
218 /* Resize the height of the nav panels in the reference,
227 $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle
234 /* Resize the height of the side-nav and doc-content divs,
239 // Get the window height and always resize the doc-content and side-nav divs
242 $("#side-nav").css({height:windowHeight + "px"});
245 // If in the reference docs, also resize the "swapper", "classes-nav", and "nav-tree" divs
249 $("#classes-nav").css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
250 $("#nav-tree").css({height:swapperHeight + "px"});
252 // If in the dev guide docs, also resize the "devdoc-nav" div
254 $("#devdoc-nav").css({height:sidenav.css("height")});
256 $("#devdoc-nav").css({height:sidenav.css("height")});
267 /* Resize the width of the "side-nav" and the left margin of the "doc-content" div,
284 $("#packages-nav").css({width:sidenavWidth});
286 if ($(".side-nav-resizable").length) { // Must check if the nav is resizable because IE6 calls resizeWidth() from resizeAll() for all pages
390 $("#nav-panels").toggle();
392 $("#nav-tree").toggle();
406 writeCookie("nav", nav_pref, "reference", date.toGMTString());
408 $("#nav-panels").toggle();
410 $("#nav-tree").toggle();
413 if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree");
415 scrollIntoView("packages-nav");
416 scrollIntoView("classes-nav");
420 function scrollIntoView(nav) {
421 var navObj = $("#"+nav);
427 var scrolling = document.getElementById(nav);
452 var nodes = $("#side-nav").find("."+lang);