luci-mod-status: fix graph rendering with XHTML themes

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2019-11-12 11:51:49 +01:00
parent 45240e088e
commit 95bfb3f363
4 changed files with 4 additions and 4 deletions

View file

@ -233,7 +233,7 @@ return L.view.extend({
return E('div', {
'style': 'width:100%;height:300px;border:1px solid #000;background:#fff'
}, response.text());
}, E(response.text()));
});
},

View file

@ -306,7 +306,7 @@ return L.view.extend({
return E('div', {
'style': 'width:100%;height:300px;border:1px solid #000;background:#fff'
}, response.text());
}, E(response.text()));
});
},

View file

@ -211,7 +211,7 @@ return L.view.extend({
return E('div', {
'style': 'width:100%;height:300px;border:1px solid #000;background:#fff'
}, response.text());
}, E(response.text()));
});
},

View file

@ -227,7 +227,7 @@ return L.view.extend({
return E('div', {
'style': 'width:100%;height:300px;border:1px solid #000;background:#fff'
}, response.text());
}, E(response.text()));
});
},