forked from lix-project/hydra
Show an error message if tab loading fails
This commit is contained in:
parent
47d2ee0dab
commit
961feedf4e
|
@ -461,7 +461,11 @@ BLOCK makeLazyTab %]
|
||||||
var pattern = /#.+/gi;
|
var pattern = /#.+/gi;
|
||||||
var id = e.target.toString().match(pattern)[0];
|
var id = e.target.toString().match(pattern)[0];
|
||||||
if (id == "#[% tabName %]") {
|
if (id == "#[% tabName %]") {
|
||||||
$('#[% tabName %]').load("[% uri %]");
|
$('#[% tabName %]').load("[% uri %]", function(response, status, xhr) {
|
||||||
|
if (status == "error") {
|
||||||
|
$('#[% tabName %]').html("<div class='alert alert-error'>Error loading tab: " + xhr.status + " " + xhr.statusText + "</div>");
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue