1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/UI/Mixins/backbone.marionette.templates.js
2013-03-29 16:28:58 -07:00

23 lines
613 B
JavaScript

"use strict";
Marionette.TemplateCache.get = function (templateId) {
var templateFunction = window.Templates[templateId];
if (!templateFunction) {
console.error('couldn\'t find pre-compiled template ' + templateId);
}
var templateName = templateId;
return function (data) {
try {
//console.log('rendering template ' + templateName);
return templateFunction(data);
}
catch (error) {
console.error('template render failed for ' + templateName + ' ' + error.message);
console.error(data);
}
};
};