mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-08 17:41:03 +02:00
catchupRelativeToArticle: use confirm_feed_catchup preference
This commit is contained in:
parent
6240dabe21
commit
fb45339a81
@ -2019,7 +2019,7 @@ function catchupRelativeToArticle(below) {
|
|||||||
} else {
|
} else {
|
||||||
var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
|
var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
|
||||||
|
|
||||||
if (confirm(msg)) {
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
|
||||||
|
|
||||||
for (var i = 0; i < ids_to_mark.length; i++) {
|
for (var i = 0; i < ids_to_mark.length; i++) {
|
||||||
var e = $("RROW-" + ids_to_mark[i]);
|
var e = $("RROW-" + ids_to_mark[i]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user