Browse Source

html entity fixes

master
Julian Steinwachs 9 years ago
parent
commit
30c7b918e1
  1. 6
      build/app-bundle.js
  2. 6
      jsx/common/PostContent.js

6
build/app-bundle.js

@ -565,6 +565,8 @@ module.exports = Post = React.createClass({displayName: "Post", @@ -565,6 +565,8 @@ module.exports = Post = React.createClass({displayName: "Post",
},
parseContent: function( msg ) {
//return [{type:"text",raw:msg}];
var output = [];
var tmp;
@ -578,7 +580,7 @@ module.exports = Post = React.createClass({displayName: "Post", @@ -578,7 +580,7 @@ module.exports = Post = React.createClass({displayName: "Post",
var reEmail = new RegExp(strEmailRegexp);
var reSplitCounter = new RegExp(strSplitCounterR);
msg = this.escapeHtmlEntities(msg);
//msg = this.escapeHtmlEntities(msg);
while( msg != undefined && msg.length ) {
@ -654,7 +656,7 @@ module.exports = Post = React.createClass({displayName: "Post", @@ -654,7 +656,7 @@ module.exports = Post = React.createClass({displayName: "Post",
}*/
}
output.push({type:"text",raw:msg});
output.push({type:"text",raw:this.reverseHtmlEntities(msg)});
msg = "";
}

6
jsx/common/PostContent.js

@ -48,6 +48,8 @@ module.exports = Post = React.createClass({ @@ -48,6 +48,8 @@ module.exports = Post = React.createClass({
},
parseContent: function( msg ) {
//return [{type:"text",raw:msg}];
var output = [];
var tmp;
@ -61,7 +63,7 @@ module.exports = Post = React.createClass({ @@ -61,7 +63,7 @@ module.exports = Post = React.createClass({
var reEmail = new RegExp(strEmailRegexp);
var reSplitCounter = new RegExp(strSplitCounterR);
msg = this.escapeHtmlEntities(msg);
//msg = this.escapeHtmlEntities(msg);
while( msg != undefined && msg.length ) {
@ -137,7 +139,7 @@ module.exports = Post = React.createClass({ @@ -137,7 +139,7 @@ module.exports = Post = React.createClass({
}*/
}
output.push({type:"text",raw:msg});
output.push({type:"text",raw:this.reverseHtmlEntities(msg)});
msg = "";
}

Loading…
Cancel
Save