diff options
author | gleitz <gleitz@mit.edu> | 2011-06-22 17:18:07 -0400 |
---|---|---|
committer | gleitz <gleitz@mit.edu> | 2011-06-22 17:18:07 -0400 |
commit | 52900c89f75ce95347b3bcafe561ee54cb50df89 (patch) | |
tree | 588c9578b9bf29180acb87c6007e08572c5176b1 /lib/handlebars/compiler.js | |
parent | be8f4f6fb9c6bde43e28dd7b1b7247c4d7bdd046 (diff) | |
download | handlebars.js-52900c89f75ce95347b3bcafe561ee54cb50df89.zip handlebars.js-52900c89f75ce95347b3bcafe561ee54cb50df89.tar.gz handlebars.js-52900c89f75ce95347b3bcafe561ee54cb50df89.tar.bz2 |
removed references to .boolean, which broke the YUI Compressor
Diffstat (limited to 'lib/handlebars/compiler.js')
-rw-r--r-- | lib/handlebars/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler.js b/lib/handlebars/compiler.js index 4d74d14..6f52482 100644 --- a/lib/handlebars/compiler.js +++ b/lib/handlebars/compiler.js @@ -229,7 +229,7 @@ Handlebars.JavaScriptCompiler = function() {}; }, BOOLEAN: function(bool) { - this.opcode('push', bool.boolean); + this.opcode('push', bool.bool); }, comment: function() {}, |