Comment translate line breaks

This commit is contained in:
斟酌 鵬兄 2016-12-13 17:47:55 +08:00
parent 61049939fb
commit 39f4f086df

View File

@ -425,11 +425,17 @@
, hideSubmit = loggedIn
? /* Overload */ _hideSubmit
: /* Overload */ function ()
{
_hideSubmit();
captcha_wrapper.removeEventListener(captchaKey);
}
{
_hideSubmit();
captcha_wrapper.removeEventListener(captchaKey);
}
, __createContentText = function( text )
{
var e = wrapc( "c_text", text );
e.innerHTML = e.innerHTML.replace( /\n/g, "<br />" );
return e;
}
, generateCommentStack = function ( rObj, obj )
{
@ -455,11 +461,11 @@
// Generate comment stack
, c_stack = rObj["comment_id"]
// Reply Structure
? wrapc("reply", wrapc("c_cont", [ c_ind = wrapc("r_indicator") , wrapc("c_text", rObj.content) , c_info ]))
? wrapc("reply", wrapc("c_cont", [ c_ind = wrapc("r_indicator") , __createContentText( rObj.content ) , c_info ]))
: wrapc("c_comm",
[
c_ind = wrapc("c_indicator")
, c_cont = wrapc("c_cont", [ cpole = wrapc("cpole") , wrapc("c_text", rObj.content) , c_info ])
, c_cont = wrapc("c_cont", [ cpole = wrapc("cpole") , __createContentText( rObj.content ) , c_info ])
]
)
;