Fix reEscapedHtml for underscore builds.

This commit is contained in:
John-David Dalton
2013-12-21 10:39:02 -06:00
parent 14ed669eba
commit 8069853dda
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
reInterpolate = /<%=([\s\S]+?)%>/g;
/** Used to match HTML entities and HTML characters */
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,
var reEscapedHtml = /&(?:amp|lt|gt|quot|#x27);/g,
reUnescapedHtml = /[&<>"']/g;
/** Used to ensure capturing order of template delimiters */