We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a065ae9 commit d2cfc7bCopy full SHA for d2cfc7b
src/www/httpd/htdocs/js/modules/status.js
@@ -43,7 +43,7 @@ APP.status = (function ($) {
43
44
$('#uptime').text(String.format("%t", parseInt(data.uptime)));
45
$('#memory').text("" + data.free_memory + "/" + data.total_memory + " KB");
46
- wifiStrength = parseInt((parseInt(data.wlan_strength) * 100) / 70);
+ wifiStrength = parseInt(data.wlan_strength);
47
if (wifiStrength >= 80) {
48
$('#wlan_strength').attr("src","images/wlan_strong_signal.png")
49
$('#wlan_strength_percent').text(" " + wifiStrength.toString() + " %")
0 commit comments