nghttp2/doc/_themes/sphinx_rtd_theme/static/js/theme.js

114 lines
4.2 KiB
JavaScript
Raw Normal View History

2015-05-07 14:09:57 +02:00
function toggleCurrent (elem) {
var parent_li = elem.closest('li');
parent_li.siblings('li.current').removeClass('current');
parent_li.siblings().find('li.current').removeClass('current');
parent_li.find('> ul li.current').removeClass('current');
parent_li.toggleClass('current');
}
$(document).ready(function() {
2014-02-02 10:35:21 +01:00
// Shift nav in mobile when clicking the menu.
$(document).on('click', "[data-toggle='wy-nav-top']", function() {
2015-05-07 14:09:57 +02:00
$("[data-toggle='wy-nav-shift']").toggleClass("shift");
$("[data-toggle='rst-versions']").toggleClass("shift");
2014-02-02 10:35:21 +01:00
});
2015-05-07 14:09:57 +02:00
// Nav menu link click operations
2014-02-02 10:35:21 +01:00
$(document).on('click', ".wy-menu-vertical .current ul li a", function() {
2015-05-07 14:09:57 +02:00
var target = $(this);
// Close menu when you click a link.
$("[data-toggle='wy-nav-shift']").removeClass("shift");
$("[data-toggle='rst-versions']").toggleClass("shift");
// Handle dynamic display of l3 and l4 nav lists
toggleCurrent(target);
if (typeof(window.SphinxRtdTheme) != 'undefined') {
window.SphinxRtdTheme.StickyNav.hashChange();
}
2014-02-02 10:35:21 +01:00
});
$(document).on('click', "[data-toggle='rst-current-version']", function() {
2015-05-07 14:09:57 +02:00
$("[data-toggle='rst-versions']").toggleClass("shift-up");
});
2014-02-02 10:35:21 +01:00
// Make tables responsive
$("table.docutils:not(.field-list)").wrap("<div class='wy-table-responsive'></div>");
2015-05-07 14:09:57 +02:00
// Add expand links to all parents of nested ul
$('.wy-menu-vertical ul').siblings('a').each(function () {
var link = $(this);
expand = $('<span class="toctree-expand"></span>');
expand.on('click', function (ev) {
toggleCurrent(link);
ev.stopPropagation();
return false;
});
link.prepend(expand);
});
2013-12-06 17:27:56 +01:00
});
2014-02-02 10:35:21 +01:00
2015-05-07 14:09:57 +02:00
// Sphinx theme state
2014-02-02 10:35:21 +01:00
window.SphinxRtdTheme = (function (jquery) {
var stickyNav = (function () {
var navBar,
win,
2015-04-01 16:11:07 +02:00
winScroll = false,
2015-05-07 14:09:57 +02:00
linkScroll = false,
winPosition = 0,
2014-02-02 10:35:21 +01:00
enable = function () {
2015-05-07 14:09:57 +02:00
init();
reset();
win.on('hashchange', reset);
// Set scrolling
win.on('scroll', function () {
if (!linkScroll) {
winScroll = true;
}
2015-04-01 16:11:07 +02:00
});
2015-05-07 14:09:57 +02:00
setInterval(function () {
2015-04-01 16:11:07 +02:00
if (winScroll) {
winScroll = false;
2015-05-07 14:09:57 +02:00
var newWinPosition = win.scrollTop(),
navPosition = navBar.scrollTop(),
newNavPosition = navPosition + (newWinPosition - winPosition);
navBar.scrollTop(newNavPosition);
winPosition = newWinPosition;
2015-04-01 16:11:07 +02:00
}
2015-05-07 14:09:57 +02:00
}, 25);
2014-02-02 10:35:21 +01:00
},
init = function () {
navBar = jquery('nav.wy-nav-side:first');
2015-05-07 14:09:57 +02:00
win = jquery(window);
},
reset = function () {
// Get anchor from URL and open up nested nav
var anchor = encodeURI(window.location.hash);
if (anchor) {
try {
var link = $('.wy-menu-vertical')
.find('[href="' + anchor + '"]');
$('.wy-menu-vertical li.toctree-l1 li.current')
.removeClass('current');
link.closest('li.toctree-l2').addClass('current');
link.closest('li.toctree-l3').addClass('current');
link.closest('li.toctree-l4').addClass('current');
}
catch (err) {
console.log("Error expanding nav for anchor", err);
}
}
},
hashChange = function () {
linkScroll = true;
win.one('hashchange', function () {
linkScroll = false;
});
2014-02-02 10:35:21 +01:00
};
jquery(init);
return {
2015-05-07 14:09:57 +02:00
enable: enable,
hashChange: hashChange
2014-02-02 10:35:21 +01:00
};
}());
return {
2015-05-07 14:09:57 +02:00
StickyNav: stickyNav
2014-02-02 10:35:21 +01:00
};
}($));