modules/admin-full: fix remaining status template
This commit is contained in:
parent
630d559c26
commit
1f1377fdc4
1 changed files with 5 additions and 5 deletions
|
@ -166,7 +166,9 @@ $Id$
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
var update_status = function() {
|
(function() {
|
||||||
|
var func = arguments.callee;
|
||||||
|
|
||||||
iwxhr.get('<%=luci.dispatcher.build_url("admin", "network", "wireless_status", table.concat(netlist, ","))%>', null,
|
iwxhr.get('<%=luci.dispatcher.build_url("admin", "network", "wireless_status", table.concat(netlist, ","))%>', null,
|
||||||
function(x, st)
|
function(x, st)
|
||||||
{
|
{
|
||||||
|
@ -336,12 +338,10 @@ $Id$
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
window.setTimeout(update_status, 5000);
|
window.setTimeout(func, 5000);
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
};
|
})();
|
||||||
|
|
||||||
update_status();
|
|
||||||
//]]></script>
|
//]]></script>
|
||||||
|
|
||||||
<h2><a id="content" name="content"><%:Wireless Overview%></a></h2>
|
<h2><a id="content" name="content"><%:Wireless Overview%></a></h2>
|
||||||
|
|
Loading…
Reference in a new issue