Bladeren bron

Use <hr hidden> instead of 'display: none' style.

default 1 jaar geleden
bovenliggende
commit
9f6d34edda
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      html.c

+ 1 - 1
html.c

@@ -2734,7 +2734,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
     /* add an invisible hr, to help differentiate between posts in text browsers */
     /* add an invisible hr, to help differentiate between posts in text browsers */
     xs_html_add(entry_top,
     xs_html_add(entry_top,
         xs_html_sctag("hr",
         xs_html_sctag("hr",
-            xs_html_attr("style", "display: none")));
+            xs_html_attr("hidden", NULL)));
 
 
     return entry_top;
     return entry_top;
 }
 }