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.
19 lines
447 B
19 lines
447 B
'use strict';
|
|
define({
|
|
register: function (Handlebars) {
|
|
Handlebars.registerHelper("debug", function (optionalValue) {
|
|
|
|
console.group('Handlebar context');
|
|
|
|
console.log(this);
|
|
if (optionalValue) {
|
|
|
|
console.group('optional values');
|
|
console.log('optinal values');
|
|
console.groupEnd();
|
|
}
|
|
console.groupEnd();
|
|
});
|
|
}
|
|
});
|