From 808b19d2cb8add5cff18b8762c7505202f1341be Mon Sep 17 00:00:00 2001 From: Pecusx Date: Sat, 18 Feb 2017 22:16:23 +0100 Subject: [PATCH] Language and Info buttons in web interface. --- html/index.html | 10 ++++++++++ html/styles.css | 3 +++ 2 files changed, 13 insertions(+) diff --git a/html/index.html b/html/index.html index 2c15aa5..b3333b9 100755 --- a/html/index.html +++ b/html/index.html @@ -28,6 +28,10 @@
+
+
+ +
@@ -87,6 +91,12 @@ $("#VDOWNbutton").click(function() { $.post("button.php?key=KEY_VOLUMEDOWN"); }); + $("#LGbutton").click(function() { + $.post("button.php?key=KEY_LANGUAGE"); + }); + $("#INFObutton").click(function() { + $.post("button.php?key=KEY_INFO"); + }); $("#MUTEbutton").click(function() { $.post("button.php?key=KEY_MUTE"); }); diff --git a/html/styles.css b/html/styles.css index b8cd2ec..ac3e64a 100755 --- a/html/styles.css +++ b/html/styles.css @@ -32,6 +32,9 @@ body { width: 150; height: 125; } +#LGbutton { + visibility: hidden; +} #config { float: right; text-align: center;