Home | History | Annotate | Download | only in js

Lines Matching full:sticky

185     $("#sticky-header").addClass("design");
202 $("#sticky-header").addClass("develop");
227 $("#sticky-header").addClass("distribute");
249 $("#sticky-header").addClass("about");
442 if (sticky) {
718 var $others = $('li.nav-section.expanded', $(this).closest('ul')).not('.sticky');
739 /** Create the list of breadcrumb links in the sticky header */
741 var $breadcrumbUl = $("#sticky-header ul.breadcrumb");
1065 var sticky = false;
1068 /* Sets the vertical scoll position at which the sticky bar should appear.
1071 stickyTop = $('#header-wrapper').outerHeight() - $('#sticky-header').outerHeight();
1075 * Displays sticky nav bar on pages when dac header scrolls out of view
1081 var $stickyEl = $('#sticky-header');
1102 if (sticky && (scrollLeft != prevScrollLeft)) {
1109 if (sticky == shouldBeSticky) {
1113 // If sticky header visible and position is now near top, hide sticky
1114 if (sticky && !shouldBeSticky) {
1115 sticky = false;
1122 // delay hide the sticky
1123 $menuEl.removeClass('sticky-menu');
1129 } else if (!sticky && shouldBeSticky) {
1130 sticky = true;
1132 $menuEl.addClass('sticky-menu');
1145 $menuEl.removeClass('sticky-menu');
2006 if ((sticky ) && (search.value != "")) {
2678 /* Adjust the scroll position to account for sticky header, only if the hash matches an id.
2702 // then adjust the scroll position to account for sticky header, then exit.
2823 if (!sticky) return;
2834 if (!sticky) return;
3249 // Make all third-generation list items 'sticky' to prevent them from collapsing
3250 $containerUl.find('li li li.nav-section').addClass('sticky');