1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-06 11:40:00 +00:00
Sonarr/UI/Mixins/handlebars.mixin.js

20 lines
616 B
JavaScript
Raw Normal View History

2013-04-30 17:01:54 -07:00
'use strict';
Handlebars.registerHelper('partial', function(templateName, context){
//TODO: We should be able to pass in the context, either an object or a property
var templateFunction = Marionette.TemplateCache.get(templateName);
return new Handlebars.SafeString(templateFunction(this));
});
Handlebars.registerHelper("debug", function(optionalValue) {
console.log("Current Context");
console.log("====================");
console.log(this);
if (optionalValue) {
console.log("Value");
console.log("====================");
console.log(optionalValue);
}
});