You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
855 B
29 lines
855 B
'use strict';
|
|
|
|
Handlebars.registerHelper('partial', function (templateName) {
|
|
//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('formField', function () {
|
|
if (!this.type) {
|
|
return Handlebars.helpers.partial.apply(this, ['Form/TextboxTemplate']);
|
|
}
|
|
|
|
return Handlebars.helpers.partial.apply(this, ['Form/TextboxTemplate']);
|
|
});
|
|
|
|
Handlebars.registerHelper("debug", function(optionalValue) {
|
|
console.log("Current Context");
|
|
console.log("====================");
|
|
console.log(this);
|
|
|
|
if (optionalValue) {
|
|
console.log("Value");
|
|
console.log("====================");
|
|
console.log(optionalValue);
|
|
}
|
|
});
|