summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2012-12-13 12:56:42 +0100
committerM. Voerman <rekordc@gmail.com>2012-12-13 12:56:42 +0100
commit1c8ffeb5b479c77415a1ea0121ec7d1337089868 (patch)
treed55ab604e754d6e4e3a4e69c7f954a7ba35ec884 /index.html
parent22c2747a5b17b531f7128235d92d3607e7ac8146 (diff)
downloadvdr-vipclient-1c8ffeb5b479c77415a1ea0121ec7d1337089868.tar.gz
vdr-vipclient-1c8ffeb5b479c77415a1ea0121ec7d1337089868.tar.bz2
Starting to work on Video Out. Nothing working yet, because I don't have a HDMI TV devices to test it with.
Diffstat (limited to 'index.html')
-rw-r--r--index.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/index.html b/index.html
index 6959334..ce885ab 100644
--- a/index.html
+++ b/index.html
@@ -43,6 +43,7 @@ function onLoad() {
showOSD();
}
+
function onUnload() {
try {
mediaPlayer.close();
@@ -83,7 +84,7 @@ function play(uri) {
if (mediaPlayer.getState() != mediaPlayer.STATE_IDLE) {
mediaPlayer.close();
}
- uri=ServerAdres+uri;
+ uri = ServerAdres + uri;
mediaPlayer.open(uri);
mediaPlayer.play(1000);
if(isFullscreen) {
@@ -345,11 +346,11 @@ function onKeyDown(event) {
case "Scroll":
if(isFullscreen) {
NowNext = 0;
- showChannelList();
videoplane.style.width = "320px";
videoplane.style.height = "240px";
videoplane.style.left = "380px";
videoplane.style.top = "300px";
+ showChannelList();
isFullscreen = 0;
if(!SwitchGuide) {
preChan = currChan;
@@ -1111,8 +1112,6 @@ function InitMenu() {
mainmenu.innerHTML = "<center><font size=7 color=white><p> SETTINGS </p><font color=red size=5><p>Frontdisplay Clock : " + showClock + "</p></font><font color=green size=5><p>Prio audio track : " + (toi.informationService.getObject("cfg.media.audio.languagepriority")) + "</p></font><font color=yellow size=5><p>Switch timer : " + Boolean(switchtimerID) + "</p></font><font color=blue size=5><p>Preview guide : " + SwitchGuide + "</p></font></center>";
}
-
-
// End of Menu section