stringify names for better compression, remove dead functions, removed underscore.js compatibility

This commit is contained in:
Misko Hevery
2010-08-18 16:23:12 -07:00
parent 1087270c95
commit 5ddd8d9586
23 changed files with 155 additions and 257 deletions

View File

@@ -181,7 +181,7 @@ Compiler.prototype = {
template.addChild(i, self.templatize(child, i, priority));
});
}
return template.empty() ? null : template;
return template.empty() ? _null : template;
}
};