summaryrefslogtreecommitdiff
path: root/template/default/library.js
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2006-03-14 12:14:10 +0100
committerAndreas Mair <amair.sob@googlemail.com>2006-03-14 12:14:10 +0100
commitdddf3a10680874dc1950995b6c09446915df81ca (patch)
tree5c621b1a3e5660888faf01c929c4e3ad16fc780b /template/default/library.js
parent2723bd07c1a821c2198f43a313570c600907c327 (diff)
downloadvdradmin-am-3.4.4beta2.tar.gz
vdradmin-am-3.4.4beta2.tar.bz2
2006-03-14: 3.4.4beta2v3.4.4beta2
- Reworked TV grabbing. - Added optional parameters for TV for use with external tools: http://vdradmin-am.ip?aktion=tv_show&size=[full|half|quarter]&interval=[0|1|2|3|5|10|30|60]&tv_only=bla - Fixed program switching in prog_summary, prog_list and prog_detail (Based on suggestions by kayser). - New: buttons to move to previous/next day in timers_list (Requested by BigDiSt). - Moved "help" menu into "about" menu. - Added VDR's "commands.conf" conntent to select box in navigation menu. - Changed defaults for "autotimer checking" in timers as they had been in v3.4.3. - New button on remote controls: Mute (Requested by RĂ¼diger Jung and Hardy Flor). - Timeline in timer_list will show timers of current day even if a timer starts the day before (Reported by Hardy Flor).
Diffstat (limited to 'template/default/library.js')
-rw-r--r--template/default/library.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/template/default/library.js b/template/default/library.js
index e8275b5..67b36fb 100644
--- a/template/default/library.js
+++ b/template/default/library.js
@@ -28,7 +28,8 @@ function mdel(message) {
function callurl( url ) {
image = new Image();
- image.src = url;
+ Now = new Date();
+ image.src = url + "&rand=" + Now.getTime();
}
function popup(URL) {