1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/UI/Mixins/backbone.marionette.templates.js
2013-03-30 12:13:10 -07:00

24 lines
632 B
JavaScript

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