mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-13 16:37:52 +00:00
display longer posts (>140 characters)
This commit is contained in:
parent
8819187d2d
commit
3023b90c8a
@ -66,14 +66,14 @@ function postToElem(post, kind, promoted) {
|
||||
username = userpost.n;
|
||||
k = userpost.k;
|
||||
time = userpost.time;
|
||||
msg = userpost.msg;
|
||||
msg = userpost.msg + (userpost.msg2 || '');
|
||||
content_to_rt = $.toJSON(userpost);
|
||||
content_to_sigrt = post.sig_userpost;
|
||||
} else {
|
||||
username = rt.n;
|
||||
k = rt.k;
|
||||
time = rt.time;
|
||||
msg = rt.msg;
|
||||
msg = rt.msg + (rt.msg2 || '');
|
||||
content_to_rt = $.toJSON(rt);
|
||||
content_to_sigrt = userpost.sig_rt;
|
||||
}
|
||||
@ -82,7 +82,7 @@ function postToElem(post, kind, promoted) {
|
||||
username = userpost.n;
|
||||
k = userpost.k;
|
||||
time = userpost.time;
|
||||
msg = userpost.msg;
|
||||
msg = userpost.msg + (userpost.msg2 || '');
|
||||
content_to_rt = $.toJSON(userpost);
|
||||
content_to_sigrt = post.sig_userpost;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user