mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
709 B
JavaScript
17 lines
709 B
JavaScript
11 years ago
|
$( document ).ready(function() {
|
||
|
// Shift nav in mobile when clicking the menu.
|
||
|
$("[data-toggle='wy-nav-top']").click(function() {
|
||
|
$("[data-toggle='wy-nav-shift']").toggleClass("shift");
|
||
|
$("[data-toggle='rst-versions']").toggleClass("shift");
|
||
|
});
|
||
|
// Close menu when you click a link.
|
||
|
$(".wy-menu-vertical .current ul li a").click(function() {
|
||
|
$("[data-toggle='wy-nav-shift']").removeClass("shift");
|
||
|
$("[data-toggle='rst-versions']").toggleClass("shift");
|
||
|
});
|
||
|
$("[data-toggle='rst-current-version']").click(function() {
|
||
|
$("[data-toggle='rst-versions']").toggleClass("shift-up");
|
||
|
});
|
||
|
$("table.docutils:not(.field-list").wrap("<div class='wy-table-responsive'></div>");
|
||
|
});
|