Got Qunit tests running through RSpec and fixed a bunch of bugs... 33 fails from the original suite to go
This commit is contained in:
@@ -32,7 +32,6 @@ Handlebars.AST.ContentNode = function(string) {
|
||||
|
||||
Handlebars.AST.IdNode = function(parts) {
|
||||
this.type = "ID"
|
||||
this.parts = parts;
|
||||
|
||||
var dig = [], depth = 0;
|
||||
|
||||
@@ -44,7 +43,7 @@ Handlebars.AST.IdNode = function(parts) {
|
||||
else { dig.push(part) }
|
||||
}
|
||||
|
||||
this.dig = dig;
|
||||
this.parts = dig;
|
||||
this.depth = depth;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user