From: Jo-Philipp Wich Date: Sat, 7 Jul 2018 12:59:58 +0000 (+0200) Subject: luci-mod-admin-full: style and script fixes for realtime bandwidth graph X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ecedfe5dcc32c73a4e55337162e3e2fbba46fe98;p=project%2Fluci.git luci-mod-admin-full: style and script fixes for realtime bandwidth graph - add Math.log2() polyfill for IE 11 - use sans-serif font for time axis Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_status/bandwidth.htm b/modules/luci-mod-admin-full/luasrc/view/admin_status/bandwidth.htm index ba0ab0f680..50e51bad00 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_status/bandwidth.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_status/bandwidth.htm @@ -59,6 +59,8 @@ var label_scale; + Math.log2 = Math.log2 || function(x) { return Math.log(x) * Math.LOG2E; }; + function bandwidth_label(bytes, br) { var uby = '<%:kB/s%>'; @@ -149,7 +151,7 @@ var text = G.createElementNS('http://www.w3.org/2000/svg', 'text'); text.setAttribute('x', i + 5); text.setAttribute('y', 15); - text.setAttribute('style', 'fill:#999999; font-size:9pt'); + text.setAttribute('style', 'fill:#999999; font-size:9pt; font-family:sans-serif'); text.appendChild(G.createTextNode(Math.round((width - i) / step / 60) + 'm')); label_25.parentNode.appendChild(line);