mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
Some work towards collapsing threads by default.
This commit is contained in:
parent
a0fc1b38eb
commit
59142795e7
1 changed files with 2 additions and 1 deletions
3
html.c
3
html.c
|
@ -1453,6 +1453,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
|
||||||
const char *actor;
|
const char *actor;
|
||||||
const char *v;
|
const char *v;
|
||||||
int has_title = 0;
|
int has_title = 0;
|
||||||
|
int collapse_threads = 0;
|
||||||
|
|
||||||
/* do not show non-public messages in the public timeline */
|
/* do not show non-public messages in the public timeline */
|
||||||
if ((read_only || !user) && !is_msg_public(msg))
|
if ((read_only || !user) && !is_msg_public(msg))
|
||||||
|
@ -2053,7 +2054,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
|
||||||
|
|
||||||
if (left) {
|
if (left) {
|
||||||
xs_html *ch_details = xs_html_tag("details",
|
xs_html *ch_details = xs_html_tag("details",
|
||||||
xs_html_attr("open", NULL),
|
xs_html_attr(collapse_threads ? "" : "open", NULL),
|
||||||
xs_html_tag("summary",
|
xs_html_tag("summary",
|
||||||
xs_html_text("...")));
|
xs_html_text("...")));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue