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 <jo@mein.io>
This commit is contained in:
parent
bee97d8041
commit
af6fd6dfab
1 changed files with 4 additions and 4 deletions
|
@ -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')),
|
||||
|
|
Loading…
Reference in a new issue