diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-08-11 20:14:55 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-08-11 20:14:55 +0200 |
commit | 75d5a9234353d50d90f853175bf9af5b41d42044 (patch) | |
tree | d0c252cb8ca989e39717e01770911f4944298175 /public/static/image.js | |
parent | 661f3d079c7643acac16ffa372c20d80ee42244b (diff) |
use asset versioning
Diffstat (limited to 'public/static/image.js')
-rw-r--r-- | public/static/image.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/public/static/image.js b/public/static/image.js deleted file mode 100644 index 40bc37d..0000000 --- a/public/static/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); -}); |