luci-app-mwan3: remove css from javascript in overview_status_interface

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
Florian Eckert 2018-03-01 10:36:03 +01:00
parent 5362f69706
commit dcb041e396

View file

@ -15,30 +15,27 @@ XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "status", "mwan", "interface_
for ( var iface in status.interfaces)
{
var state = '';
var css = '';
switch (status.interfaces[iface].status)
{
case 'online':
state = '<%:Online (tracking active)%>';
css = 'wanon';
break;
case 'notMonitored':
state = '<%:Online (tracking off)%>';
css = 'wanon';
break;
case 'offline':
state = '<%:Offline%>';
css = 'wanoff';
break;
default:
state = '<%:Disabled%>';
css = 'wanoff';
break;
}
statusview += String.format(
'<span class="%s"><strong>%s</strong><br />%s</span>',
css,
iface,
'<div><strong>Interface: </strong>%s</div>',
iface
);
statusview += String.format(
'<div><strong>Status: </strong>%s</div></br></br>',
state
);
}