-
Notifications
You must be signed in to change notification settings - Fork 69
/
jslib.js
147 lines (117 loc) · 4.52 KB
/
jslib.js
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
var selected_topic = null;
function hide_sections() {
//Have to hide the div's using javascript so they are visible if javascript is disabled.
var grid_sections = getElementsByClassName(document.getElementById("middle-column"), "li", "grid_section");
for(var i = 0; i < grid_sections.length; i++) {
grid_sections[i].style.display = 'none';
}
//Remove href link from icon anchors so they don't compete with javascript onlick calls
var icon_links = getElementsByClassName(document.getElementById("iconContainer"), "a", "icon_link");
for(var i = 0; i < icon_links.length; i++) {
icon_links[i].href = "#";
}
document.getElementById("shadebox_close").style.display = "";
initialize_shadebox();
update_shadebox();
window.onresize = function() {
update_shadebox();
}
}
function select_topic(evt, topic_no) {
//Make the selected topic visible, scroll to it and hide all other topics.
if(selected_topic != null) {
document.getElementById('section-'+selected_topic).style.display = "none";
}
selected_topic = topic_no;
document.getElementById("section-"+topic_no).style.display = "";
//window.scroll(0,document.getElementById("section-"+topic_no).offsetTop);
toggle_shadebox();
return true;
}
function select_topic_edit(evt, topic_no) {
//Scroll to the selected topic, don't hide anything.
//Don't do anything if the edit link has been clicked.
if((evt.srcElement||evt.target).parentNode.nodeName == "A") {
return;
}
document.getElementById("section-"+topic_no).style.display = "";
window.scroll(0,document.getElementById("section-"+topic_no).offsetTop);
}
/** Below is shadebox code **/
var shadebox_open = false;
function initialize_shadebox() {
hide_shadebox();
document.getElementById('shadebox_overlay').style.display="";
document.body.appendChild(document.getElementById('shadebox'));
var content = document.getElementById('shadebox_content');
content.style.position = 'absolute';
content.style.width = '800px';
content.style.top = '50px';
content.style.left = '50%';
content.style.marginLeft = '-400px';
content.style.zIndex = '9000001';
}
function toggle_shadebox() {
if(shadebox_open) {
hide_shadebox();
shadebox_open = false;
window.scrollTo(0, 0);
} else {
show_shadebox();
shadebox_open = true;
}
}
function show_shadebox() {
update_shadebox();
document.getElementById("shadebox").style.display = "";
update_shadebox();
}
function hide_shadebox() {
document.getElementById("shadebox").style.display = "none";
}
//code from quirksmode.org
//author unknown.
function get_page_size() {
var xScroll, yScroll;
if(window.innerHeight && window.scrollMaxY) {
xScroll = document.body.scrollWidth;
yScroll = window.innerHeight + window.scrollMaxY;
} else if(document.body.scrollHeight > document.body.offsetHeight) { //all but Explorer Mac
xScroll = document.body.scrollWidth;
yScroll = document.body.scrollHeight;
} else { //Explorer Mac ... also works in Explorer 6 strict and safari
xScroll = document.body.offsetWidth;
yScroll = document.body.offsetHeight;
}
var windowWidth, windowHeight;
if(self.innerHeight) { // all except Explorer
windowWidth = self.innerWidth;
windowHeight = self.innerHeight;
} else if(document.documentElement && document.documentElement.clientHeight) { //Explorer 6 strict mode
windowWidth = document.documentElement.clientWidth;
windowHeight = document.documentElement.clientHeight;
} else if(document.body) { //other Explorers
windowWidth = document.body.clientWidth;
windowHeight = document.body.clientHeight;
}
//for small pages with total height less than height of the viewport
if(yScroll < windowHeight) {
pageHeight = windowHeight;
} else {
pageHeight = yScroll;
}
//for small pages with total width less than width of the viewport
if(xScroll < windowWidth) {
pageWidth = windowWidth;
} else {
pageWidth = xScroll;
}
arrayPageSize = new Array(pageWidth, pageHeight, windowWidth, windowHeight);
return arrayPageSize;
}
function update_shadebox() {
//Make the overlay fullscreen (width happens automatically, so just update the height)
var overlay = document.getElementById("shadebox_overlay");
var pagesize = get_page_size();
overlay.style.height = pagesize[1] + "px";
}