-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,7 @@ | |
.replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""): str) | ||
.replace(/'|\\/g, "\\$&") | ||
.replace(c.interpolate || skip, function(m, code) { | ||
return cse.start + unescape(code) + cse.end; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
houd1ni
Author
Owner
|
||
return cse.start + c.varname + '.' + unescape(code) + cse.end; | ||
}) | ||
.replace(c.encode || skip, function(m, code) { | ||
needhtmlencode = true; | ||
|
Do you realise that it breaks loop variables and other local variables in templates?