mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
979efb8354
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
23 lines
560 B
JavaScript
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);
|
|
}
|
|
};
|
|
}; |