Restore the JavaScript parser

This commit is contained in:
Jeremy Ruston
2012-05-08 19:33:04 +01:00
parent 830359263d
commit 557a7b0eba
3 changed files with 113 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ Element.prototype.render = function(type) {
if(isHtml) {
output.push("<",this.type);
if(this.attributes) {
attr = []
attr = [];
for(a in this.attributes) {
attr.push(a);
}