summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-05-07 20:27:33 +0200
committerM. Voerman <rekordc@gmail.com>2013-05-07 20:27:33 +0200
commit9849cf5bfbeb18a12ed67816792f973536b5fa01 (patch)
treeef5364b3ef6393fdcd7d9885388c4d7809fb9faf
parente7dae2341ec446b02906cbf786c97effd16dac53 (diff)
downloadvdr-vipclient-9849cf5bfbeb18a12ed67816792f973536b5fa01.tar.gz
vdr-vipclient-9849cf5bfbeb18a12ed67816792f973536b5fa01.tar.bz2
small fixes for subdir
-rw-r--r--index.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/index.html b/index.html
index b0e0f10..287fcd7 100644
--- a/index.html
+++ b/index.html
@@ -2512,6 +2512,7 @@ if (DelisOK) {
function getRecList() {
getVDRstatus();
MaxInGroup = 14;
+ subgroup = 0;
try {
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET",(recServ + recPath + "?" + new Date().getTime()),false);
@@ -2687,7 +2688,7 @@ function MakeRecList2() {
{
if (recTitl[i][1]) {
if (recTitl[i][0] != x) {
- recList[i] = "\uE002 " + recTitl[i][0];
+ recList[i] = "\uE002" + recTitl[i][0];
xx = xx + 1;
} else {
recList[i] = "" ;
@@ -2695,7 +2696,7 @@ function MakeRecList2() {
recGroup[i] = xx;
} else {
recGroup[i] = 0;
- recList[i] = "\uE003 " + recTitl[i];
+ recList[i] = "\uE003" + recTitl[i];
if (rec_New[i] == "true" ) { recList[i] = "\uE010\uE003" + recList[i];
} else { recList[i] = "\uE003\uE003" + recList[i]; }
}
@@ -2729,12 +2730,12 @@ function showMediaList() {
if (getRecOK == 1) {
var htmlstring = "<h1><center style='font-size:" + fsRec + ";color:white;'> RECORDINGS (free " + (100 - perc_space) + "%, " + (free_space/1024).toFixed(0) + " GB) </center></h1><table border='0'><tr>";
- if (MaxInGroup < 14) {var MaxMed = MaxInGroup - 1; }
+ if (MaxInGroup < 14) {var MaxMed = MaxInGroup; }
} else {
var htmlstring = "<h1><center style='font-size:" + fsRec + ";color:white;'> EPG " + channelsnames[currChan] + " </center></h1><table border='0'><tr>";
}
- for(var i=currMed; i<=currMed + MaxMed; i++) {
+ for(var i=currMed; i<(currMed + MaxMed); i++) {
if (listMed<0) {
listMed=nrMedia;
}