Skip to content
Permalink
0f3418cef7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 131 lines (126 sloc) 4.61 KB
$(document).ready(function () {
// Shift nav in mobile when clicking the menu.
$(document).on('click', "[data-toggle='wy-nav-top']", function () {
$("[data-toggle='wy-nav-shift']").toggleClass("shift");
$("[data-toggle='rst-versions']").toggleClass("shift");
});
// Close menu when you click a link.
$(document).on('click', ".wy-menu-vertical .current ul li a", function () {
$("[data-toggle='wy-nav-shift']").removeClass("shift");
$("[data-toggle='rst-versions']").toggleClass("shift");
});
$(document).on('click', "[data-toggle='rst-current-version']", function () {
$("[data-toggle='rst-versions']").toggleClass("shift-up");
});
// Make tables responsive
$("table.docutils:not(.field-list)").wrap("<div class='wy-table-responsive'></div>");
// ---
// START DOC MODIFICATION BY RUFNEX
// v1.0 04.02.2015
// Add ToogleButton to get FullWidth-View by Johannes Gamperl codeigniter.de
$('#openToc').click(function () {
$('#nav').slideToggle();
});
$('#closeMe').toggle(
function ()
{
setCookie('ciNav', 'yes', 365);
$('#nav2').show();
$('#topMenu').remove();
$('body').css({background: 'none'});
$('.wy-nav-content-wrap').css({background: 'none', 'margin-left': 0});
$('.wy-breadcrumbs').append('<div style="float:right;"><div style="float:left;" id="topMenu">' + $('.wy-form').parent().html() + '</div></div>');
$('.wy-nav-side').toggle();
},
function ()
{
setCookie('ciNav', 'no', 365);
$('#topMenu').remove();
$('#nav').hide();
$('#nav2').hide();
$('body').css({background: '#edf0f2;'});
$('.wy-nav-content-wrap').css({background: 'none repeat scroll 0 0 #fcfcfc;', 'margin-left': '300px'});
$('.wy-nav-side').show();
}
);
if (getCookie('ciNav') == 'yes')
{
$('#closeMe').trigger('click');
//$('#nav').slideToggle();
}
// END MODIFICATION ---
});
// Rufnex Cookie functions
function setCookie(cname, cvalue, exdays) {
// expire the old cookie if existed to avoid multiple cookies with the same name
if (getCookie(cname)) {
document.cookie = cname + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
}
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + "; " + expires + "; path=/";
}
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ')
c = c.substring(1);
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return '';
}
// End
// resize window
$(window).on('resize', function(){
// show side nav on small screens when pulldown is enabled
if (getCookie('ciNav') == 'yes' && $(window).width() <= 768) { // 768px is the tablet size defined by the theme
$('.wy-nav-side').show();
}
// changing css with jquery seems to override the default css media query
// change margin
else if (getCookie('ciNav') == 'no' && $(window).width() <= 768) {
$('.wy-nav-content-wrap').css({'margin-left': 0});
}
// hide side nav on large screens when pulldown is enabled
else if (getCookie('ciNav') == 'yes' && $(window).width() > 768) {
$('.wy-nav-side').hide();
}
// change margin
else if (getCookie('ciNav') == 'no' && $(window).width() > 768) {
$('.wy-nav-content-wrap').css({'margin-left': '300px'});
}
});
window.SphinxRtdTheme = (function (jquery) {
var stickyNav = (function () {
var navBar,
win,
stickyNavCssClass = 'stickynav',
applyStickNav = function () {
if (navBar.height() <= win.height()) {
navBar.addClass(stickyNavCssClass);
} else {
navBar.removeClass(stickyNavCssClass);
}
},
enable = function () {
applyStickNav();
win.on('resize', applyStickNav);
},
init = function () {
navBar = jquery('nav.wy-nav-side:first');
win = jquery(window);
};
jquery(init);
return {
enable: enable
};
}());
return {
StickyNav: stickyNav
};
}($));