1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00

better template load error message.

This commit is contained in:
kay.one 2013-01-21 21:43:47 -08:00
parent 2112a8f9fa
commit 577d8adec4

View File

@ -2,7 +2,7 @@
loadTemplate: function (templateId) {
var template = "<div class='alert alert-error'>TEMPLATE [" + templateId + "] NOT FOUND</div>";
var template;
jQuery.ajax({
url: 'Backbone.NzbDrone//' + templateId + '.html',
@ -13,6 +13,7 @@
}).fail(function (data) {
console.log("couldn't load template " + this.templateId + " Error: " + data.statusText);
template = "<div class='alert alert-error'>Couldn't load template '" + templateId + "'. Status: " + data.statusText + "</div>";
});
return template;