1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 17:55:55 +00:00

add viewfeed_offline(); misc fixes

This commit is contained in:
Andrew Dolgov
2009-02-03 18:43:44 +03:00
parent 95f0c2c5b3
commit 6a2034f9ff
4 changed files with 36 additions and 12 deletions

View File

@@ -129,9 +129,21 @@ function viewNextFeedPage() {
}
}
function viewfeed_offline(feed, subop, is_cat, subop_param, skip_history, offset) {
try {
} catch (e) {
exception_error("viewfeed_offline", e);
}
}
function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
try {
if (offline_mode) return viewfeed_offline(feed, subop, is_cat, subop_param,
skip_history, offset);
// if (!offset) page_offset = 0;
last_requested_article = 0;