Lines Matching refs:document

27 document.pageReady = [];
28 document.domReady = [];
31 for(var i in document.pageReady) {
32 document.pageReady[i]();
36 $(document).ready(function() {
38 document.domReady[i]();
48 if (document.adjustContent != 0) {
54 var h = document.locHash;
62 if (document.annotate) {
64 var toggle_js = document.getElementById('toggle-annotate-by-javascript');
65 var toggle_ss = document.getElementById('toggle-annotate');
73 document.adjustContent = 0;
75 document.adjustContent = 1;
86 var projects = document.projects;
87 var sbox = document.getElementById('sbox');
111 // var p = document.getElementById('project');
125 link = document.link + "?a=true";
126 if (document.rev.length > 0) {
127 link += '&' + document.rev;
151 document.sym_div_width = 240;
152 document.sym_div_height_max = 480;
153 document.sym_div_top = 100;
154 document.sym_div_left_margin = 40;
155 document.sym_div_height_margin = 40;
156 document.highlight_count = 0;
158 if (document.sym_div_shown == 1) {
159 document.sym_div.style.left = get_sym_div_left() + "px";
160 document.sym_div.style.height = get_sym_div_height() + "px";
207 document.sym_div_left = $(window)
208 .width() - (document.sym_div_width + document.sym_div_left_margin);
209 return document.sym_div_left;
213 document.sym_div_height = $(window)
214 .height() - document.sym_div_top - document.sym_div_height_margin;
216 if (document.sym_div_height > document.sym_div_height_max) {
217 document.sym_div_height = document.sym_div_height_max;
219 return document.sym_div_height;
223 return document.sym_div_top;
227 return document.sym_div_width;
234 if (document.sym_div == null) {
235 document.sym_div = document.createElement("div");
236 document.sym_div.id = "sym_div";
238 document.sym_div.className = "sym_list_style";
239 document.sym_div.style.margin = "0px auto";
240 document.sym_div.style.width = get_sym_div_width() + "px";
241 document.sym_div.style.height = get_sym_div_height() + "px";
242 document.sym_div.style.top = get_sym_div_top() + "px";
243 document.sym_div.style.left = get_sym_div_left() + "px";
245 document.sym_div.innerHTML = get_sym_list_contents();
247 document.body.appendChild(document.sym_div);
248 document.sym_div_shown = 1;
249 } else if (document.sym_div_shown == 1) {
250 document.sym_div.className = "sym_list_style_hide";
251 document.sym_div_shown = 0;
253 document.sym_div.style.height = get_sym_div_height() + "px";
254 document.sym_div.style.width = get_sym_div_width() + "px";
255 document.sym_div.style.top = get_sym_div_top() + "px";
256 document.sym_div.style.left = get_sym_div_left() + "px";
257 document.sym_div.className = "sym_list_style";
258 document.sym_div_shown = 1;
310 'background-color' : high_colors[document.highlight_count
314 document.highlight_count++;
323 var tbox = document.getElementById('input_highlight');
416 window.location = document.xrefPath + '/' + selected[0];