]> Sergey Matveev's repositories - public-inbox.git/commitdiff
feed: swap order of "next" and "head" links
authorEric Wong <e@80x24.org>
Mon, 28 Apr 2014 20:45:42 +0000 (20:45 +0000)
committerEric Wong <e@80x24.org>
Mon, 28 Apr 2014 20:45:42 +0000 (20:45 +0000)
This is one less key stroke for somebody paging through the
list history.

lib/PublicInbox/Feed.pm

index 0a08c7f2b6a0bb008fb25cce8b69951707d2d53d..e593aace041e030c08ff06b9e2c4bd4732f256de 100644 (file)
@@ -111,7 +111,7 @@ sub nav_footer {
                $head = $cgi->path_info;
                $head = qq!<a href="$head">head</a>!;
        }
-       "$head $next";
+       "$next $head";
 }
 
 sub each_recent_blob {