luci-olsr: fix typo

This commit is contained in:
Patrick Grimm 2013-07-02 23:17:16 +00:00
parent 38aa51a391
commit 624926911b

View file

@ -74,35 +74,34 @@ end
'<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+' proto-%s">' + '<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>', '<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 neigh.proto, neigh.dfgcolor, neigh.rip, neigh.rip, neigh.rmac
); );
} else { } else {
s += String.format( s += String.format(
'<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+' proto-%s">' + '<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>', '<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 neigh.proto, neigh.dfgcolor, neigh.rip, neigh.rip, neigh.rmac
); );
} }
if (neigh.hn) { if (neigh.hn) {
s += String.format( 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 neigh.dfgcolor, neigh.hn, neigh.hn
); );
} } else {
else {
s += String.format( s += String.format(
'<td class="cbi-section-table-titles" style="background-color:%s">?</td>', '<td class="cbi-section-table-titles" style="background-color:%s">?</td>',
neigh.dfgcolor 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; nt.innerHTML = s;