summaryrefslogtreecommitdiff
path: root/ws2a/bugsload.js
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-05-09 18:12:16 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-05-09 18:12:16 -0400
commit8d7dae05ad550b716913a39db79c2ae500f07fcb (patch)
treee15b573f22f2084f3fed195b7b6f347d0f183659 /ws2a/bugsload.js
parent241df8fff3eb2dee76b6a6be985cc5f357eb8332 (diff)
downloadwebpage-8d7dae05ad550b716913a39db79c2ae500f07fcb.tar.gz
webpage-8d7dae05ad550b716913a39db79c2ae500f07fcb.tar.bz2
webpage-8d7dae05ad550b716913a39db79c2ae500f07fcb.zip
Some work on fixing the bug list
Diffstat (limited to 'ws2a/bugsload.js')
-rw-r--r--ws2a/bugsload.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/ws2a/bugsload.js b/ws2a/bugsload.js
deleted file mode 100644
index 4c8b007..0000000
--- a/ws2a/bugsload.js
+++ /dev/null
@@ -1,11 +0,0 @@
-function loadLastBugs() {
- var xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function() {
- if (xhttp.readyState == 4 && xhttp.status == 200) {
- document.getElementById("bugstable").innerHTML = xhttp.responseText;
- }
- };
- xhttp.open("GET", "/cgi-bin/bugsdata.cgi", true);
- xhttp.send();
-}
-window.onload = loadLastBugs