luci-mod-status: fix graph rendering with XHTML themes
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 95bfb3f363
)
This commit is contained in:
parent
ae61ecb6be
commit
eb918b3313
4 changed files with 4 additions and 4 deletions
|
@ -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()));
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -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()));
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -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()));
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -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()));
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue