Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4640e13

Browse files
committed
Change as suggested by Peter Funk <[email protected]>:
Move around the navigational links on the left-hand side of the navigation bar to be more like the cursor keys.
1 parent 3d83fc3 commit 4640e13

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Doc/perl/l2hinit.perl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ sub make_nav_panel {
148148
$s = ('<table align="center" width="100%" cellpadding="0" cellspacing="2">'
149149
. "\n<tr>"
150150
# left-hand side
151-
. "\n<td>$NEXT</td>"
152-
. "\n<td>$UP</td>"
153151
. "\n<td>$PREVIOUS</td>"
152+
. "\n<td>$UP</td>"
153+
. "\n<td>$NEXT</td>"
154154
# title box
155155
. "\n<td align=\"center\"$NAV_BGCOLOR width=\"100%\">"
156156
. "\n <b class=\"title\">$t_title</b></td>"
@@ -160,9 +160,10 @@ sub make_nav_panel {
160160
. "\n<td>$INDEX</td>"
161161
. "\n</tr></table>\n"
162162
# textual navigation
163-
. make_nav_sectref("Next", $NEXT_TITLE)
163+
. make_nav_sectref("Previous", $PREVIOUS_TITLE)
164164
. make_nav_sectref("Up", $UP_TITLE)
165-
. make_nav_sectref("Previous", $PREVIOUS_TITLE));
165+
. make_nav_sectref("Next", $NEXT_TITLE)
166+
);
166167
# remove these; they are unnecessary and cause errors from validation
167168
$s =~ s/ NAME="tex2html\d+"\n */ /g;
168169
return $s;

0 commit comments

Comments
 (0)