From 77277e08ba9e7e56ec6d083bce96c75cc5a6b4a9 Mon Sep 17 00:00:00 2001 From: Pecusx Date: Sun, 7 May 2017 13:42:23 +0200 Subject: [PATCH] Streaming control button added. --- html/index.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/html/index.html b/html/index.html index 126d61a..0122f74 100755 --- a/html/index.html +++ b/html/index.html @@ -30,7 +30,8 @@

- +
+
@@ -122,5 +123,11 @@ $("#player").load("player.php"); }, 5500); }); + $("#STREAMTbutton").click(function() { + $.post("button.php?key=STREAMING_TOGGLE"); + setTimeout(function(){ + $("#player").load("player.php"); + }, 4000); + });