diff options
author | M. Voerman <rekordc@gmail.com> | 2012-12-12 22:06:49 +0100 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2012-12-12 22:06:49 +0100 |
commit | 22c2747a5b17b531f7128235d92d3607e7ac8146 (patch) | |
tree | 6c8a800a4eabae1a9f4d8dc3980a57e6737fd1dc /index.html | |
parent | 0a4d2e3f4b09444679bf94eefc6cf6e4ad86d543 (diff) | |
download | vdr-vipclient-22c2747a5b17b531f7128235d92d3607e7ac8146.tar.gz vdr-vipclient-22c2747a5b17b531f7128235d92d3607e7ac8146.tar.bz2 |
Missed one. now OSD time is toFixed(0).
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -787,7 +787,7 @@ function GetEPG(epgchan) // CDS has short info, other providers, a little longer. EPGNext = th + ":" + tm + " (" + (event.duration/60).toFixed(0) + ")" + " " + event.name + " " + EPGShortnext; } else { - EPGNext = th + ":" + tm + " (" + (event.duration/60) + ")" + " " + event.name + " "; + EPGNext = th + ":" + tm + " (" + (event.duration/60).toFixed(0) + ")" + " " + event.name + " "; } if (!event.time) { |