summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-status/htdocs/luci-static
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-11-12 11:51:49 +0100
committerJo-Philipp Wich <jo@mein.io>2019-11-12 11:51:49 +0100
commit95bfb3f363d130566550e61565fc8f7073020763 (patch)
treeeda735c5cf3f4c82ce1056b3fd7cb6f73ad3981a /modules/luci-mod-status/htdocs/luci-static
parent45240e088e4dcef3216d19f1751c13eb08c6edd6 (diff)
luci-mod-status: fix graph rendering with XHTML themes
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-status/htdocs/luci-static')
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js2
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js2
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js2
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js2
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js
index 18e2160b5..0d89ae8ae 100644
--- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js
@@ -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()));
});
},
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js
index 96dee1db7..458437ede 100644
--- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js
@@ -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()));
});
},
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js
index a1ed43478..646d256d6 100644
--- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js
@@ -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()));
});
},
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js
index ce0c72bc3..cd8cff133 100644
--- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js
@@ -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()));
});
},