summaryrefslogtreecommitdiff
path: root/static/hide.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/hide.js')
-rw-r--r--static/hide.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/static/hide.js b/static/hide.js
deleted file mode 100644
index 67cb5c9..0000000
--- a/static/hide.js
+++ /dev/null
@@ -1,17 +0,0 @@
-var hidden = false;
-
-function hideOffline() {
- hidden = !hidden;
- var playerboxes = document.querySelectorAll('div.Offline');
- for(index in playerboxes) /* Show/Hide player row */
- {
- if(typeof playerboxes[index] != 'object') continue;
- playerboxes[index].style.display = (hidden) ? 'none' : 'inline-block';
- }
- /* And update the text on our button. */
- document.querySelector('#offlinetoggle').innerHTML = (hidden) ? 'Show Offline' : 'Hide Offline';
-}
-/* Execute function on page load. */
-setTimeout(hideOffline, 1);
-
-// vim: commentstring=/*\ %s\ */