better template load error message.

This commit is contained in:
kay.one 2013-01-21 21:43:47 -08:00
parent 2112a8f9fa
commit 577d8adec4
1 changed files with 2 additions and 1 deletions

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;