diff options
author | Yehuda Katz <wycats@gmail.com> | 2011-06-22 16:37:26 -0700 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2011-06-22 16:37:26 -0700 |
commit | 17dbfa700489cb927231dd0cb257009189d3af02 (patch) | |
tree | 588c9578b9bf29180acb87c6007e08572c5176b1 /lib/handlebars/utils.js | |
parent | 1482f1ae72b6bc6fec45e22b0ba87ff452a72c3a (diff) | |
parent | 52900c89f75ce95347b3bcafe561ee54cb50df89 (diff) | |
download | handlebars.js-17dbfa700489cb927231dd0cb257009189d3af02.zip handlebars.js-17dbfa700489cb927231dd0cb257009189d3af02.tar.gz handlebars.js-17dbfa700489cb927231dd0cb257009189d3af02.tar.bz2 |
Merge pull request #96 from gleitz/master
Allow boolean calls to work with YUI Compressor
Diffstat (limited to 'lib/handlebars/utils.js')
-rw-r--r-- | lib/handlebars/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js index 5fdfb0e..4202c77 100644 --- a/lib/handlebars/utils.js +++ b/lib/handlebars/utils.js @@ -26,7 +26,7 @@ Handlebars.SafeString.prototype.toString = function() { var possible = /[&<>"'`]/; var escapeChar = function(chr) { - return escape[chr] || "&" + return escape[chr] || "&"; }; Handlebars.Utils = { |