diff options
author | M. Voerman <rekordc@gmail.com> | 2013-07-16 15:45:55 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2013-07-16 15:45:55 +0200 |
commit | 4cf750b11b4efe5e7bb775edefa98b18a9a3aa3b (patch) | |
tree | 0937639eafef4e5899b777af49b1a242bf1be424 /index.html | |
parent | 48d902596d93d6d0d7a704b915010b98a09e1806 (diff) | |
download | vdr-vipclient-4cf750b11b4efe5e7bb775edefa98b18a9a3aa3b.tar.gz vdr-vipclient-4cf750b11b4efe5e7bb775edefa98b18a9a3aa3b.tar.bz2 |
In mixed environment 19x0/19x3 you can set full update only to 19x3 boxes (only for guide view speed up)
lang_dutch changes
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -63,6 +63,13 @@ function onLoad() { // No harddisk, no recorder functions possible } + if (toi.informationService.getObject("config.productdisplayname") !== "Motorola VIP1903" && + toi.informationService.getObject("config.productdisplayname") !== "Motorola VIP1963" && fullupdate !== 2) { + fullupdate = 0; + // No 19x3 so better turn fullupdate EPG off + } + + if (mediaRecorder) { createRecorder(); mediaRecorder.addEventListener(mediaRecorder.ON_STATE_CHANGED, onRecorderStateChanged); @@ -2078,7 +2085,8 @@ if(menu == 4) { // INFO Menu var x = is.getObject("var.capabilities.dvr"); if (x !== "FALSE") { htmltext = htmltext + "\n \uE017 "; } else { htmltext = htmltext + "\n \uE016 "; } htmltext = htmltext + "DVR "; - + if (fullupdate !== 0) { htmltext = htmltext + "\n \uE017 "; } else { htmltext = htmltext + "\n \uE016 "; } + htmltext = htmltext + "Full EPG Update "; } catch(e) { alert("Error : " + e); |