diff options
| author | M. Voerman <rekordc@gmail.com> | 2013-05-19 14:14:00 +0200 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2013-05-19 14:14:00 +0200 |
| commit | 8078310f66e992bc68775d51ec2849f0428de092 (patch) | |
| tree | bf11c2b99d29f4a9d1fb0761b0860123982e66eb /index.html | |
| parent | 59a34778352d016bbdecf2e9adfd72f1f7ef5226 (diff) | |
| download | vdr-vipclient-8078310f66e992bc68775d51ec2849f0428de092.tar.gz vdr-vipclient-8078310f66e992bc68775d51ec2849f0428de092.tar.bz2 | |
added keys from comhem & old kpn remote
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -355,6 +355,8 @@ function onKeyDown(event) { } else { switch(event.keyIdentifier) { + + case "ChannelUp": case "Up": if(isFullscreen) { count = 0; @@ -376,6 +378,7 @@ function onKeyDown(event) { preview(channels[currChan]); } break; + case "ChannelDown": case "Down": if(isFullscreen) { count = 0; @@ -652,6 +655,7 @@ function onKeyDown(event) { InitMenu(menu); } break; + case KEY_FAV: case "Scroll": if(isFullscreen) { NowNext = 0; @@ -819,7 +823,18 @@ function onKeyDown(event) { break; - + case KEY_OPNAMES: + case KEY_FILM: + // jump to recordings menu. + if(isFullscreen) { + osdepginfo.style.opacity = 0; + osdepginfonext.style.opacity = 0; + mediaList.style.opacity = 0.9; + mainmenu.style.opacity = 0; + recPath = "/recordings.xml"; + setTimeout("getRecList();LoadMediaSettings();",100); + } + break; default: break; } |
