Model driven indexer settings

This commit is contained in:
Mark McDowall 2013-04-30 17:01:54 -07:00
commit 9d5cb6f3e0
14 changed files with 576 additions and 17 deletions

View file

@ -0,0 +1,20 @@
'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);
}
});