1
0
mirror of https://github.com/kenzok8/small-package synced 2025-09-18 18:51:16 +08:00
Files
small-package/luci-app-homebridge/files/luci/view/homebridge/status.htm
github-actions[bot] 16a922f897 update-09.24
2021-09-24 23:37:27 +08:00

22 lines
664 B
HTML

<script type="text/javascript">//<![CDATA[
XHR.poll(3, '<%=url([[admin]], [[services]], [[homebridge]], [[status]])%>', null,
function(x, data) {
var tb = document.getElementById('homebridge_status');
if (data && tb) {
if (data.running) {
var links = '<em><b><font color=green>Homebridge <%:RUNNING%></font></b></em>';
tb.innerHTML = links;
} else {
tb.innerHTML = '<em><b><font color=red>Homebridge <%:NOT RUNNING%></font></b></em>';
}
}
}
);
//]]>
</script>
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
<fieldset class="cbi-section">
<p id="homebridge_status">
<em><%:Collecting data...%></em>
</p>
</fieldset>