1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-29 00:01:27 +00:00

only enable bottom actions toolbar in headlines, when headlines list scrolls

This commit is contained in:
Andrew Dolgov
2006-02-25 07:15:05 +01:00
parent 646e601e71
commit e0a7121ba9
2 changed files with 22 additions and 3 deletions

View File

@@ -1385,9 +1385,18 @@
return;
}
function print_headline_subtoolbar($link, $feed_site_url, $feed_title) {
function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
$bottom = false) {
print "<table class=\"headlinesSubToolbar\"
if (!$bottom) {
$class = "headlinesSubToolbar";
$tid = "headlineActionsTop";
} else {
$class = "invisible";
$tid = "headlineActionsBottom";
}
print "<table class=\"$class\" id=\"$tid\"
width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
@@ -1580,7 +1589,8 @@
print "</table>";
}
print_headline_subtoolbar($link, "javascript:catchupPage()", "Mark page as read");
print_headline_subtoolbar($link,
"javascript:catchupPage()", "Mark page as read", true);
} else {