Home | History | Annotate | Download | only in assets

Lines Matching refs: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");
151 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizePackagesHeight(); } });
152 $("#side-nav").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } });
157 } else if ($("#side-nav").length) {
187 var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
193 link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory + 1)+"index.html']");
210 // if we're in a normal nav link (<li><a>) and the parent <ul> is hidden
220 /* Resize the height of the nav panels in the reference,
229 $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle
236 /* Resize the height of the side-nav and doc-content divs,
241 // Get the window height and always resize the doc-content and side-nav divs
244 $("#side-nav").css({height:windowHeight + "px"});
247 // If in the reference docs, also resize the "swapper", "classes-nav", and "nav-tree" divs
251 $("#classes-nav").css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
252 $("#nav-tree").css({height:swapperHeight + "px"});
254 // Also resize the "devdoc-nav" div
255 } else if ($("#devdoc-nav").length) {
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,
271 var sidenav = $("#side-nav");
285 $("#packages-nav").css({width:sidenavWidth});
287 if (sidenav.length) { // Must check if the nav exists because IE6 calls resizeWidth() from resizeAll() for all pages
391 $("#nav-panels").toggle();
393 $("#nav-tree").toggle();
407 writeCookie("nav", nav_pref, "reference", date.toGMTString());
409 $("#nav-panels").toggle();
411 $("#nav-tree").toggle();
414 if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree");
416 scrollIntoView("packages-nav");
417 scrollIntoView("classes-nav");
421 function scrollIntoView(nav) {
422 var navObj = $("#"+nav);
428 var scrolling = document.getElementById(nav);
453 var nodes = $("#side-nav").find("."+lang);