summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-status
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-mod-status')
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js
index 15dcbe638..da08ec12c 100644
--- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js
@@ -10,7 +10,10 @@ function invokeIncludesLoad(includes) {
for (var i = 0; i < includes.length; i++) {
if (typeof(includes[i].load) == 'function') {
- tasks.push(includes[i].load());
+ tasks.push(includes[i].load().catch(L.bind(function() {
+ this.failed = true;
+ }, includes[i])));
+
has_load = true;
}
else {
@@ -29,6 +32,9 @@ function startPolling(includes, containers) {
for (var i = 0; i < includes.length; i++) {
var content = null;
+ if (includes[i].failed)
+ continue;
+
if (typeof(includes[i].render) == 'function')
content = includes[i].render(results ? results[i] : null);
else if (includes[i].content != null)