summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-07-21 17:13:29 +0200
committerM. Voerman <rekordc@gmail.com>2013-07-21 17:13:29 +0200
commit039e023603d3b8f766950b571865a10bd5bd7018 (patch)
treef758bc35f02bd8a19728e6b0984befd224f97d32
parentc0b2614962d17b7585fb7c85c5a7f763c321c316 (diff)
downloadvdr-vipclient-039e023603d3b8f766950b571865a10bd5bd7018.tar.gz
vdr-vipclient-039e023603d3b8f766950b571865a10bd5bd7018.tar.bz2
Bugfix - No more channr on screen after pressing <opnames> or <film> button. Forgot it when I made this fix for <menu> button.
-rw-r--r--index.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/index.html b/index.html
index 6311698..3688947 100644
--- a/index.html
+++ b/index.html
@@ -872,6 +872,12 @@ function onKeyDown(event) {
case KEY_FILM:
// jump to recordings menu.
if(isFullscreen) {
+ if(count) {
+ count = 0;
+ osdnr.style.opacity = 0;
+ showDisplay((currChan.toString()), false, 100, 0 );
+ Change = 0;
+ }
osdepginfo.style.opacity = 0;
osdepginfonext.style.opacity = 0;
mediaList.style.opacity = 0.9;
@@ -2210,8 +2216,8 @@ try {
var fill = "\uE003\uE003\uE003\uE003\uE003\uE003\uE003\uE003\uE003\uE003";
timersID[i] = x[i].getElementsByTagName("param")[0].childNodes[0].nodeValue;
timersFlag[i] = x[i].getElementsByTagName("param")[1].childNodes[0].nodeValue;
- timersStrt[i] = Right("00" + x[i].getElementsByTagName("param")[2].childNodes[0].nodeValue,4);
- timersStop[i] = Right("00" + x[i].getElementsByTagName("param")[3].childNodes[0].nodeValue,4);
+ timersStrt[i] = Right("000" + x[i].getElementsByTagName("param")[2].childNodes[0].nodeValue,4);
+ timersStop[i] = Right("000" + x[i].getElementsByTagName("param")[3].childNodes[0].nodeValue,4);
timersDays[i] = x[i].getElementsByTagName("param")[9].childNodes[0].nodeValue;
if (timersDays[i] == "-------" ) {
timersDays[i] = x[i].getElementsByTagName("param")[10].childNodes[0].nodeValue;