FIX: Missing formatting for oneboxes in preview

This commit is contained in:
Robin Ward
2014-07-04 14:14:50 -04:00
parent a64b954fca
commit 7ab98bb0e7
2 changed files with 17 additions and 6 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ function hoistingSanitizer(result) {
hoisted = [];
for (var i=0; i<m.length; i++) {
var c = m[i],
id = "discourse:hoisted-comment:" + i;
id = md5("discourse:hoisted-comment:" + i);
result = result.replace(c, id);
hoisted.push([c, id]);
}