From: Hannu Nyman Date: Fri, 18 Dec 2015 18:38:08 +0000 (+0200) Subject: luci-mod-admin-full: interface status page / clarify address display X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=e42e5f58651983b9971c2facb08354cc2273dbef;hp=68e54eb0f2668a614d966147f4de4274579e421e luci-mod-admin-full: interface status page / clarify address display Copy the changes made by f8d0ba00b2ff27dc9e2f10712bc343ae655fbdf9 also to the interface details pages in order to clarify display of multiple addresses. Signed-off-by: Hannu Nyman --- diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm b/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm index 94d9e8811..8c3b1abcc 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_network/iface_status.htm @@ -39,30 +39,20 @@ if (ifc.ipaddrs && ifc.ipaddrs.length) { - html += '<%:IPv4%>: '; - for (var i = 0; i < ifc.ipaddrs.length; i++) html += String.format( - '%s%s', - i ? ', ' : '', + '<%:IPv4%>: %s
', ifc.ipaddrs[i] ); - - html += '
'; } if (ifc.ip6addrs && ifc.ip6addrs.length) { - html += '<%:IPv6%>: '; - for (var i = 0; i < ifc.ip6addrs.length; i++) html += String.format( - '%s%s', - i ? ', ' : '', - ifc.ip6addrs[i].toUpperCase() + '<%:IPv6%>: %s
', + ifc.ip6addrs[i] ); - - html += '
'; } d.innerHTML = html;