summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-08-11 15:46:27 +0200
committerM. Voerman <rekordc@gmail.com>2013-08-11 15:46:27 +0200
commit1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6 (patch)
tree664c67163a045bb3ecafd396e05a730c551fe282
parent36857bbad2f038680490646ed060ca2bdc0c51ca (diff)
downloadvdr-vipclient-1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6.tar.gz
vdr-vipclient-1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6.tar.bz2
release 0.21
-rw-r--r--index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html
index 8ffae45..48129dc 100644
--- a/index.html
+++ b/index.html
@@ -20,7 +20,7 @@
//
//
-var Version = "0.21.5"
+var Version = "0.21"
for (var x = 0; x < 10; x++) {
searchtimers[x] = "" ; // To solve displaying undefined
@@ -2659,7 +2659,7 @@ if (DelisOK) {
setTimeout("MakeRecList3(recGroup[currMed]); showMediaList();",100)
subgroup = 1;
} else {
- recList[currMed] = "\u0003" + recList[currMed].substr(1);
+ recList[currMed] = "\u0003" + recList[currMed].substring(1);
mediaList.style.opacity = 0;
setTimeout("GetMarks(); getResume(); playRec(recLink[currMed]+ '?mode=streamtoend&time=' + position);",100);
}
@@ -3048,7 +3048,7 @@ try {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", recServ + "/setResume.xml?guid=" + recGUID[currMed] + "&resume=" + position, false);
xmlhttp.send();
- recList[currMed] = "\uE003" + Right(recList[currMed], recList[currMed].length -1 );
+ recList[currMed] = "\uE003" + recList[currMed].substring(1);
} catch(e) {
alert("Setting Resume problem: " + e);
}
@@ -3075,7 +3075,7 @@ try {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", recServ + "/setResume.xml?guid=" + recGUID[currMed] + "&resume=0", false);
xmlhttp.send();
- recList[currMed] = "\uE010" + Right(recList[currMed], recList[currMed].length -1 );
+ recList[currMed] = "\uE010" + recList[currMed].substring(1);
} catch(e) {
alert("Setting Resume problem: " + e);
}