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");
152 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizePackagesHeight(); } });
153 $("#side-nav").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } });
158 } else if ($("#side-nav").length) {
175 var sampleList = $('#devdoc-nav-sample-list');
176 var articleList = $('#devdoc-nav-article-list');
177 var tutorialList = $('#devdoc-nav-tutorial-list');
178 var topicList = $('#devdoc-nav-topic-list');
268 // find instances of the page name in the side nav
269 var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
277 link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory +
295 // if we're in a normal nav link (<li><a>) and the parent <ul> is hidden
305 /* Resize the height of the nav panels in the reference,
314 $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle
321 /* Resize the height of the side-nav and doc-content divs,
326 // Get the window height and always resize the doc-content and side-nav divs
329 $("#side-nav").css({height:windowHeight + "px"});
332 // If in the reference docs, also resize the "swapper", "classes-nav", and "nav-tree" divs
336 $("#classes-nav").css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
337 $("#nav-tree").css({height:swapperHeight + "px"});
339 // Also resize the "devdoc-nav" div
340 } else if ($("#devdoc-nav").length) {
341 $("#devdoc-nav").css({height:sidenav.css("height")});
352 /* Resize the width of the "side-nav" and the left margin of the "doc-content" div,
356 var sidenav = $("#side-nav");
370 $("#packages-nav").css({width:sidenavWidth});
372 if (sidenav.length) { // Must check if the nav exists because IE6 calls resizeWidth() from resizeAll() for all pages
477 $("#nav-panels").toggle();
479 $("#nav-tree").toggle();
493 writeCookie("nav", nav_pref, "reference", date.toGMTString());
495 $("#nav-panels").toggle();
497 $("#nav-tree").toggle();
500 if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree");
502 scrollIntoView("packages-nav");
503 scrollIntoView("classes-nav");
507 function scrollIntoView(nav) {
508 var navObj = $("#"+nav);
514 var scrolling = document.getElementById(nav);
550 var nodes = $("#side-nav").find("."+lang);