diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-08-20 18:49:36 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-08-20 18:49:36 +0200 |
commit | 5bca4819dd35226886e85adf6e6c3cebdf1fb00a (patch) | |
tree | eeddde4349108f84c8fa252e467da91c8bf3257c /cgi/public/image.js | |
parent | 9d09737ac16b1f3715c38f57830b41a3269d85d9 (diff) |
move application from cgi directory to project root
Diffstat (limited to 'cgi/public/image.js')
-rw-r--r-- | cgi/public/image.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cgi/public/image.js b/cgi/public/image.js deleted file mode 100644 index 40bc37d..0000000 --- a/cgi/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); -}); |