diff options
author | M. Voerman <rekordc@gmail.com> | 2013-08-11 15:46:27 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2013-08-11 15:46:27 +0200 |
commit | 1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6 (patch) | |
tree | 664c67163a045bb3ecafd396e05a730c551fe282 | |
parent | 36857bbad2f038680490646ed060ca2bdc0c51ca (diff) | |
download | vdr-vipclient-1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6.tar.gz vdr-vipclient-1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6.tar.bz2 |
release 0.21
-rw-r--r-- | index.html | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); } |