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

25 lines
572 B
JavaScript
Raw Normal View History

"use strict";
Marionette.TemplateCache.get = function (templateId) {
var templateKey = templateId.toLowerCase();
2013-05-01 02:01:54 +02: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 19:38:21 +02:00
throw error;
}
};
2013-06-01 19:38:21 +02:00
};