diff options
| author | M. Voerman <rekordc@gmail.com> | 2013-06-01 12:22:12 +0200 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2013-06-01 12:22:12 +0200 |
| commit | 53e8c9ffd1420b97d080c4c7fd590c0a7bda2329 (patch) | |
| tree | aef5d8214a6220b8d14d224c601278e6c644772d /index.html | |
| parent | fbeb27b5953628e4e81277f6ef4fb369d8c5d659 (diff) | |
| download | vdr-vipclient-53e8c9ffd1420b97d080c4c7fd590c0a7bda2329.tar.gz vdr-vipclient-53e8c9ffd1420b97d080c4c7fd590c0a7bda2329.tar.bz2 | |
Channel updates
EPG update on-the-fly in guide view for fast boxes, can be switched off for 1910/1960
(Was changed because it would slow the guide down on 1910/1960)
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1480,8 +1480,9 @@ function showChannelList() { } while (!channels[listChan] && (listChan<maxChan[ChanGroup])); + if (fullupdate) { GetEPG(listChan); } if ( listChan == currChan) { - GetEPG(listChan); + if (!fullupdate) { GetEPG(listChan); } liststyle = "background:#fc5;"; } else { liststyle = ""; @@ -2234,7 +2235,7 @@ try { // End of Extended INFO - searchtimers[i] = searchtimers[i] + searchtimersSearch[i] + "\n" ; + searchtimers[i] = searchtimers[i] + searchtimersSearch[i] + "\uE003\uE003\n" ; timerOK = 1; } } catch(e) { |
