mirror of
https://github.com/pkali/piradio-mini.git
synced 2026-05-20 22:34:22 +02:00
Language and Info buttons in web interface.
This commit is contained in:
@@ -28,6 +28,10 @@
|
||||
<button id="OKbutton">OK</button>
|
||||
<button id="RIGHTbutton">></button><br>
|
||||
<button id="DOWNbutton">v</button>
|
||||
<div id="speak">
|
||||
<button id="LGbutton">LANGUAGE</button><br>
|
||||
<button id="INFObutton">INFO</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id="lewebuttony">
|
||||
<button id="SLEEPbutton"> SLEEP </button>
|
||||
@@ -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");
|
||||
});
|
||||
|
||||
@@ -32,6 +32,9 @@ body {
|
||||
width: 150;
|
||||
height: 125;
|
||||
}
|
||||
#LGbutton {
|
||||
visibility: hidden;
|
||||
}
|
||||
#config {
|
||||
float: right;
|
||||
text-align: center;
|
||||
|
||||
Reference in New Issue
Block a user