Fix improper stash

This commit is contained in:
kpdecker
2013-10-14 14:49:55 -05:00
parent 97d5efd94a
commit 9218f2e1ef
+1 -1
View File
@@ -133,7 +133,7 @@ function registerDefaultHelpers(instance) {
instance.registerHelper('if', function(conditional, options) {
if (isFunction(conditional)) { conditional = conditional.call(this); }
if (isEmpty(conditional)) {
if (Utils.isEmpty(conditional)) {
return options.inverse(this);
} else {
return options.fn(this);