From af6fd6dfab2ac576033c714cc69520e17f1fa48c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 4 Apr 2020 12:00:20 +0200 Subject: [PATCH] luci-app-nlbwmon: use legacy `L.dom` attribute Until it is converted to a proper view, we need to use the legacy alias. Fixes: #3835 Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/view/nlbw.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js index 033f1f06c..8a01b1db4 100644 --- a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js +++ b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js @@ -63,7 +63,7 @@ Chart.defaults.global.tooltipTemplate = function(tip) { function kpi(id, val1, val2, val3) { - var e = dom.elem(id) ? id : document.getElementById(id); + var e = L.dom.elem(id) ? id : document.getElementById(id); if (val1 && val2 && val3) e.innerHTML = _('%s, %s and %s').format(val1, val2, val3); @@ -96,8 +96,8 @@ function pie(id, data) } } - var node = dom.elem(id) ? id : document.getElementById(id), - key = dom.elem(id) ? id.id : id, + var node = L.dom.elem(id) ? id : document.getElementById(id), + key = L.dom.elem(id) ? id.id : id, ctx = node.getContext('2d'); if (chartRegistry.hasOwnProperty(key)) @@ -279,7 +279,7 @@ function renderHostDetail(tooltip) var rxData = [], txData = []; - dom.content(tooltip, [ + L.dom.content(tooltip, [ E('div', { 'class': 'head' }, [ E('div', { 'class': 'pie' }, [ E('label', _('Download')), -- 2.25.1