summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-10-26 00:36:00 +0200
committerM. Voerman <rekordc@gmail.com>2013-10-26 00:36:00 +0200
commit5639ec8898367b1560fa346f865862f07dc5c926 (patch)
tree2c5af5e2c52022793e9c2f9c2ab7dc1c6b20fa02 /index.html
parent577e75a198b03dd480e8853264934a0426eb2149 (diff)
downloadvdr-vipclient-5639ec8898367b1560fa346f865862f07dc5c926.tar.gz
vdr-vipclient-5639ec8898367b1560fa346f865862f07dc5c926.tar.bz2
Fix to get resume working again.
Diffstat (limited to 'index.html')
-rw-r--r--index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/index.html b/index.html
index 3d2e25a..8cb6bad 100644
--- a/index.html
+++ b/index.html
@@ -236,6 +236,8 @@ var numObjs = event.objectNames.length;
if (mediaList.style.opacity == 0) {setResume();} // No mediamenu on screen so set resume.
}
mediaPlayer.close();
+ SetLed(2,2,0);// At request no more blinking on standby.
+
} catch(e) {
alert(e);
}
@@ -2082,8 +2084,9 @@ function onKeyMenu(keyCode) {
}
if (menu == 7) {
// Show more info Current SearchTimer
- ShowSearchTimerInfo();
osdepginfo.style.opacity = 1 - osdepginfo.style.opacity;
+ osdepginfo.innerHTML = "<center><pre style='" + color_main_head + ";'>" + searchtimersSearch[timerID] + "\n\n\n\n<center>" + Lang[0] + "</center></pre>" ;
+ setTimeout("ShowSearchTimerInfo();",100);
}
break;
@@ -3402,7 +3405,7 @@ try {
xmlhttp.open("GET", server_ip + recServ + "/getResume.xml?guid=" + recGUID[currMed] + "&" + new Date().getTime(), false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
- position = Number(xmlDoc.getElementsByTagName("resume")[0].childNodes[0].nodeValue);
+ position = xmlDoc.getElementsByTagName("resume")[0].childNodes[0].nodeValue;
} catch(e) {
alert("Getting Resume problem: " + e);
}