Lidarr/UI/Mixins/backbone.marionette.templat...

25 lines
572 B
JavaScript
Raw Normal View History

"use strict";
Marionette.TemplateCache.get = function (templateId) {
var templateKey = templateId.toLowerCase();
2013-05-01 00:01:54 +00:00
var templateFunction = window.Templates[templateKey];
if (!templateFunction) {
throw 'couldn\'t find pre-compiled template ' + templateKey;
}
return function (data) {
try {
return templateFunction(data);
}
catch (error) {
console.error('template render failed for ' + templateKey + ' ' + error);
console.error(data);
2013-06-01 17:38:21 +00:00
throw error;
}
};
2013-06-01 17:38:21 +00:00
};