hyperion.ng/assets/webconfig/content/connection_lost.html
redPanther a6d12611a8 webui: enhance led config (#224)
* split content and js
tune leds config

* implement connection lost page

* split js/html in huebridge

* add js action for connection lost
2016-09-06 10:14:54 +02:00

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>