mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
moved all backbone/bootstrap files to _backboneApp
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
_.extend(Marionette.TemplateCache.prototype, {
|
||||
|
||||
loadTemplate: function (templateId) {
|
||||
|
||||
var template = "<div class='alert alert-error'>TEMPLATE [" + templateId + "] NOT FOUND</div>";
|
||||
|
||||
jQuery.ajax({
|
||||
url: 'Backbone.NzbDrone//' + templateId + '.html',
|
||||
async: false
|
||||
|
||||
}).done(function (data) {
|
||||
template = data;
|
||||
|
||||
}).fail(function (data) {
|
||||
console.log("couldn't load template " + this.templateId + " Error: " + data.statusText);
|
||||
});
|
||||
|
||||
return template;
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user