1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 09:37:12 +00:00
Lidarr/UI/Mixins/backbone.marionette.templates.js
2013-03-30 12:13:10 -07:00

24 lines
No EOL
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);
}
};
};