1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Mixins/handlebars.mixin.js

21 lines
610 B
JavaScript
Raw Normal View History

2013-05-01 03:01:54 +03:00
'use strict';
2013-05-02 01:42:30 +03:00
Handlebars.registerHelper('partial', function (templateName) {
2013-05-01 03:01:54 +03:00
//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);
}
2013-05-02 01:42:30 +03:00
});