Home | History | Annotate | Download | only in js

Lines Matching full:sticky

685       var $others = $('li.nav-section.expanded', $(this).closest('ul')).not('.sticky');
706 /** Create the list of breadcrumb links in the sticky header */
1045 var sticky = false;
1048 /* Sets the vertical scoll position at which the sticky bar should appear.
1055 * Displays sticky nav bar on pages when dac header scrolls out of view
1088 if (sticky && (scrollLeft != prevScrollLeft)) {
1095 if (sticky == shouldBeSticky) {
1099 // If sticky header visible and position is now near top, hide sticky
1100 if (sticky && !shouldBeSticky) {
1101 sticky = false;
1106 // delay hide the sticky
1107 $headerEl.removeClass('is-sticky');
1111 } else if (!sticky && shouldBeSticky) {
1112 sticky = true;
1113 $headerEl.addClass('is-sticky');
1978 if ((sticky ) && (search.value != "")) {
2681 /* Adjust the scroll position to account for sticky header, only if the hash matches an id.
2705 // then adjust the scroll position to account for sticky header, then exit.
2826 if (!sticky) return;
2837 if (!sticky) return;
3256 // Make all third-generation list items 'sticky' to prevent them from collapsing
3257 $containerUl.find('li li li.nav-section').addClass('sticky');