1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/_backboneApp/JsLibraries/backbone.marionette.extend.js

34 lines
886 B
JavaScript
Raw Normal View History

2013-01-27 05:14:42 +03:00
/// <reference path="handlebars.js" />
_.extend(Marionette.TemplateCache.prototype, {
loadTemplate: function (templateId) {
2013-01-22 08:43:47 +03:00
var template;
console.log("Loading template '" + templateId + "'");
2013-01-28 21:06:54 +03:00
$.ajax({
url: '_backboneApp//' + templateId + '.html',
2013-01-25 20:54:45 +03:00
cache:false,
async: false
}).done(function (data) {
template = data;
}).fail(function (data) {
console.log("couldn't load template " + this.templateId + " Error: " + data.statusText);
2013-01-22 08:43:47 +03:00
template = "<div class='alert alert-error'>Couldn't load template '" + templateId + "'. Status: " + data.statusText + "</div>";
});
return template;
}
2013-01-23 08:58:17 +03:00
});
2013-01-27 05:14:42 +03:00
_.extend(Marionette.TemplateCache.prototype, {
2013-01-23 08:58:17 +03:00
2013-01-27 05:14:42 +03:00
compileTemplate: function (rawTemplate) {
return Handlebars.compile(rawTemplate);
}
});