1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/UI/Mixins/backbone.marionette.templates.js
kay.one 979efb8354 much smarter binding,
auto-binding is only done when the element has binding attributes ('name')
also now an error is throw in there are binding elements but view doesn't have a model
2013-04-20 11:59:19 -07:00

23 lines
560 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 {
return templateFunction(data);
}
catch (error) {
console.error('template render failed for ' + templateKey + ' ' + error);
console.error(data);
}
};
};