fixed handlebars debug casing issue.

This commit is contained in:
Keivan Beigi 2013-07-24 17:45:05 -07:00
parent bbacad9171
commit 42c6ca4297
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,11 @@
'use strict';
define(
[
'handlebars'
], function (Handlebars) {
Handlebars.registerHelper("debug", function () {
console.group('Handlebar context');
console.log(this);
console.groupEnd();
});
});