mirror of https://gitlab.com/bashrc2/epicyon
Rss icon at bottom of newswire screen on mobile
parent
114f2039dd
commit
726e728d9a
|
@ -5857,7 +5857,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str,
|
||||||
translate['Newswire RSS Feed'] + '" title="' + \
|
translate['Newswire RSS Feed'] + '" title="' + \
|
||||||
translate['Newswire RSS Feed'] + '" src="/' + \
|
translate['Newswire RSS Feed'] + '" src="/' + \
|
||||||
iconsDir + '/logorss.png" /></a>\n'
|
iconsDir + '/logorss.png" /></a>\n'
|
||||||
if rssIconAtTop:
|
if rssIconAtTop and showHeaderImage:
|
||||||
htmlStr += rssIconStr
|
htmlStr += rssIconStr
|
||||||
|
|
||||||
if showPublishButton:
|
if showPublishButton:
|
||||||
|
@ -5881,7 +5881,8 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str,
|
||||||
positiveVoting, iconsDir)
|
positiveVoting, iconsDir)
|
||||||
htmlStr += newswireContentStr
|
htmlStr += newswireContentStr
|
||||||
|
|
||||||
if newswireContentStr and not rssIconAtTop:
|
rssAtBottom = not rssIconAtTop or not showHeaderImage
|
||||||
|
if newswireContentStr and rssAtBottom:
|
||||||
htmlStr += '<br>' + rssIconStr
|
htmlStr += '<br>' + rssIconStr
|
||||||
return htmlStr
|
return htmlStr
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue