mirror of https://gitlab.com/bashrc2/epicyon
Separator above page up
parent
033dc4a238
commit
3d5ff0ecec
|
@ -590,8 +590,14 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
|
||||
_logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '7')
|
||||
|
||||
# separator between posts which only appears in shell browsers
|
||||
# such as Lynx and is not read by screen readers
|
||||
textModeSeparator = \
|
||||
'<div class="transparent"><hr></div>'
|
||||
|
||||
# page up arrow
|
||||
if pageNumber > 1:
|
||||
tlStr += textModeSeparator
|
||||
tlStr += \
|
||||
' <center>\n' + \
|
||||
' <a href="' + usersPath + '/' + boxName + \
|
||||
|
@ -602,11 +608,6 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
translate['Page up'] + '"></a>\n' + \
|
||||
' </center>\n'
|
||||
|
||||
# separator between posts which only appears in shell browsers
|
||||
# such as Lynx and is not read by screen readers
|
||||
textModeSeparator = \
|
||||
'<div class="transparent"><hr></div>'
|
||||
|
||||
# show the posts
|
||||
itemCtr = 0
|
||||
if timelineJson:
|
||||
|
|
Loading…
Reference in New Issue