diff options
author | Patrick Grimm <patrick@lunatiki.de> | 2013-07-02 23:17:16 +0000 |
---|---|---|
committer | Patrick Grimm <patrick@lunatiki.de> | 2013-07-02 23:17:16 +0000 |
commit | 624926911b7d58cec9cc6393afe755bcbff04fc5 (patch) | |
tree | 9902013cbc0f6e382efbd9230cad497660a87c7a /applications | |
parent | 38aa51a39141af9432a957579dffc0e6932c63c9 (diff) |
luci-olsr: fix typo
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm b/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm index ab61fb5b4..0fb9bc0a3 100644 --- a/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm +++ b/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm @@ -74,35 +74,34 @@ end '<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+' proto-%s">' + '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://[%s]/cgi-bin-status.html">%s/%s</a></td>', neigh.proto, neigh.dfgcolor, neigh.rip, neigh.rip, neigh.rmac - ); + ); } else { s += String.format( '<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+' proto-%s">' + '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://%s/cgi-bin-status.html">%s/%s</a></td>', neigh.proto, neigh.dfgcolor, neigh.rip, neigh.rip, neigh.rmac - ); + ); } if (neigh.hn) { s += String.format( - '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://%s/cgi-bin-status.html">%s</a></td>' + + '<td class="cbi-section-table-titles" style="background-color:%s"><a href="http://%s/cgi-bin-status.html">%s</a></td>', neigh.dfgcolor, neigh.hn, neigh.hn - ); - } - else { + ); + } else { s += String.format( '<td class="cbi-section-table-titles" style="background-color:%s">?</td>', neigh.dfgcolor - ); - } - s += String.format( - '<td class="cbi-section-table-titles" style="background-color:%s">%s/%s/%s</td>' + - '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' + - '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' + - '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' + - '<td class="cbi-section-table-titles" style="background-color:%s" title="Signal: %s Noise: %s">%s</td>' + - '</tr>', - neigh.dfgcolor, neigh.ifn, neigh.lip, neigh.lmac, neigh.dfgcolor, neigh.lq, neigh.dfgcolor, neigh.nlq, neigh.color, neigh.cost, neigh.color, neigh.signal, neigh.noise, neigh.snr || '?' ); + } + s += String.format( + '<td class="cbi-section-table-titles" style="background-color:%s">%s/%s/%s</td>' + + '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' + + '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' + + '<td class="cbi-section-table-titles" style="background-color:%s">%s</td>' + + '<td class="cbi-section-table-titles" style="background-color:%s" title="Signal: %s Noise: %s">%s</td>' + + '</tr>', + neigh.dfgcolor, neigh.ifn, neigh.lip, neigh.lmac, neigh.dfgcolor, neigh.lq, neigh.dfgcolor, neigh.nlq, neigh.color, neigh.cost, neigh.color, neigh.signal, neigh.noise, neigh.snr || '?' + ); } nt.innerHTML = s; |