1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
$(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
};
}($));
|