mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
a6d12611a8
* split content and js tune leds config * implement connection lost page * split js/html in huebridge * add js action for connection lost
17 lines
290 B
HTML
17 lines
290 B
HTML
<div id="wrapper">
|
|
<div class="container-fluid">
|
|
connection lost: <a href="/">reconnect</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function connectionLostAction()
|
|
{
|
|
// demo code to see if this works
|
|
$("#wrapper").css("margin","auto");
|
|
$("#wrapper").css("background-color","#BBBBBB");
|
|
}
|
|
</script>
|
|
|
|
|