Merge pull request #225 from jeresig/clone-buildhtml

buildHTML's buildExpression is destructive, changing the tree object.
This commit is contained in:
Emily Eisenberg 2015-05-01 11:43:09 -07:00
commit c87b20aadd

View File

@ -1157,6 +1157,10 @@ var buildGroup = function(group, options, prev) {
* nodes.
*/
var buildHTML = function(tree, settings) {
// buildExpression is destructive, so we need to make a clone
// of the incoming tree so that it isn't accidentally changed
tree = JSON.parse(JSON.stringify(tree));
var startStyle = Style.TEXT;
if (settings.displayMode) {
startStyle = Style.DISPLAY;