]> Sergey Matveev's repositories - public-inbox.git/commitdiff
view: move per-message anchor to top in conversation view
authorEric Wong <e@80x24.org>
Thu, 30 Jun 2016 18:53:14 +0000 (18:53 +0000)
committerEric Wong <e@80x24.org>
Thu, 30 Jun 2016 18:53:29 +0000 (18:53 +0000)
This fixes the '^' (up) link in the $INBOX/new.html endpoint
for search-less displays.

lib/PublicInbox/View.pm

index 8487c2ad38f456b66515c213be0c955f1326d74d..11d8dd5395042bd4d32e89924526305ce5c0352e 100644 (file)
@@ -125,9 +125,10 @@ sub index_entry {
        my $root_anchor = $ctx->{root_anchor} || '';
        my $irt = in_reply_to($hdr);
 
-       my $rv = '<b>'.ascii_html($subj).'</b>';
-       $rv = "<u\nid=u>$rv</u>" if $root_anchor eq $id_m;
-       $rv .= "\n";
+       my $rv = "<a\nhref=#e$id\nid=m$id>*</a> ";
+       $subj = '<b>'.ascii_html($subj).'</b>';
+       $subj = "<u\nid=u>$subj</u>" if $root_anchor eq $id_m;
+       $rv .= $subj . "\n";
        $rv .= _th_index_lite($mid_raw, $irt, $id, $ctx);
        my @tocc;
        foreach my $f (qw(To Cc)) {
@@ -241,8 +242,7 @@ sub _th_index_lite {
                        $rv .= $pad . $mapping->{$nn->messageid}->[1];
                }
        }
-       $rv .= "<a\nhref=#e$id\nid=m$id>_</a> ";
-       $rv .= "<a\nhref=#r$id>$s_s, $s_c; $ctx->{s_nr}</a>\n";
+       $rv .= $pad ."<a\nhref=#r$id>$s_s, $s_c; $ctx->{s_nr}</a>\n";
 }
 
 sub walk_thread {