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:
wycats
2010-11-28 17:36:05 -08:00
parent 454d0a85b7
commit 9846fb8a28
6 changed files with 599 additions and 14 deletions
+1 -2
View File
@@ -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;
}