Skip to content

Commit

Permalink
don't escape copy text
Browse files Browse the repository at this point in the history
  • Loading branch information
leedo committed Dec 21, 2011
1 parent 2ffb819 commit 72fe915
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion share/static/alice.js
Expand Up @@ -11040,7 +11040,7 @@ Object.extend(Alice, {
clean.push(body);
}
if (clean.length) lines.push(
clean.join(" ").replace(/\n/g, "").escapeHTML());
clean.join(" ").replace(/\n/g, ""));
});
node.update(lines.join("<br>"));
node.cleanWhitespace();
Expand Down
2 changes: 1 addition & 1 deletion src/js/alice/src/alice/util.js
Expand Up @@ -31,7 +31,7 @@ Object.extend(Alice, {
clean.push(body);
}
if (clean.length) lines.push(
clean.join(" ").replace(/\n/g, "").escapeHTML());
clean.join(" ").replace(/\n/g, ""));
});
node.update(lines.join("<br>"));
node.cleanWhitespace();
Expand Down

0 comments on commit 72fe915

Please sign in to comment.