Updated the boolean functions to work with YUI compressor. Linted other files for consistency

This commit is contained in:
gleitz
2011-06-22 13:54:17 -04:00
parent 1482f1ae72
commit be8f4f6fb9
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -88,9 +88,9 @@ var Handlebars = require("handlebars");
this.integer = integer;
};
Handlebars.AST.BooleanNode = function(boolean) {
Handlebars.AST.BooleanNode = function(bool) {
this.type = "BOOLEAN";
this.boolean = boolean;
this.boolean = bool;
};
Handlebars.AST.CommentNode = function(comment) {