mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
23 lines
613 B
JavaScript
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);
|
|
}
|
|
};
|
|
}; |