You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"<tag></tag>normal text <tag/> normal text <tag>red</tag> normal text"
become
"<tag></tag>normal text <tag> normal text <tag>red</tag> normal text</tag>"
in DOM.
"normal text" should not be red in the following example.
var NullTag = React.createClass({
render: function() {
html="<tag></tag>normal text <tag/> normal text <tag>red</tag> normal text";
return React.DOM.div( {dangerouslySetInnerHTML:{__html: html}} )
}
});