summaryrefslogtreecommitdiff
path: root/public/image.js
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-14 11:17:46 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-14 11:17:46 +0100
commit8695b61e3787009df59d7fc9a013bb4a1522d630 (patch)
tree883e260a2fdad1b6f39eefbb9bcd815ac7eb8715 /public/image.js
parent5fab5f4516b7c01c7e6b920f9d9f6280275e929d (diff)
move static files into separate subdirectory for easy static serving
Diffstat (limited to 'public/image.js')
-rw-r--r--public/image.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/public/image.js b/public/image.js
deleted file mode 100644
index 40bc37d..0000000
--- a/public/image.js
+++ /dev/null
@@ -1,9 +0,0 @@
-$(document).ready(function() {
- function reloadImage() {
- d = new Date();
- origurl = $('#display').attr('src').split('&r=')[0];
- $('#display').attr('src', origurl+'&r='+d.getTime());
- setTimeout(reloadImage, 60000);
- }
- setTimeout(reloadImage, 60000);
-});