summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-01-27 13:53:09 +0100
committerM. Voerman <rekordc@gmail.com>2013-01-27 13:53:09 +0100
commit96148603c0819243f34e01517fe3d110972f174d (patch)
treea6f27fd97b705c91c44e35153aa48c00253d9b5c /index.html
parente5e26df10afd218b6a477d193104843c812a54dd (diff)
downloadvdr-vipclient-96148603c0819243f34e01517fe3d110972f174d.tar.gz
vdr-vipclient-96148603c0819243f34e01517fe3d110972f174d.tar.bz2
Fixed default channel, if start channel isn't in channelgroup 0
Fixed a bug in setresume
Diffstat (limited to 'index.html')
-rw-r--r--index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.html b/index.html
index 88fef0e..5275a7e 100644
--- a/index.html
+++ b/index.html
@@ -764,7 +764,7 @@ function onKeyDown(event) {
SI=channels[currChan].split("-");
recordStart(SI[4]);
} else {
- recordStart = (ServerAdres[ChanGroup] + channels[currChan]);
+ recordStart(ServerAdres[ChanGroup] + channels[currChan]);
}
}
break;
@@ -2289,6 +2289,7 @@ try {
function setResume() {
try {
+ position = position + (mediaPlayer.getPosition()/1000)
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", recServ + "/setResume.xml?guid=" + recGUID[currMed] + "&resume=" + position, false);
xmlhttp.send();