confirm page catchup (closes #134)
This commit is contained in:
parent
1f8361c435
commit
8a5b4579fa
|
@ -647,6 +647,14 @@ function cdmSelectArticles(mode) {
|
||||||
|
|
||||||
function catchupPage() {
|
function catchupPage() {
|
||||||
|
|
||||||
|
var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
|
||||||
|
|
||||||
|
var str = "Mark all visible articles in " + fn + " as read?";
|
||||||
|
|
||||||
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (document.getElementById("headlinesList")) {
|
if (document.getElementById("headlinesList")) {
|
||||||
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
|
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
|
||||||
selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
|
selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
|
||||||
|
|
Loading…
Reference in New Issue