Updated the boolean functions to work with YUI compressor. Linted other files for consistency
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user