1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 21:31:28 +00:00

move offline stuff to offline.js

This commit is contained in:
Andrew Dolgov
2009-02-04 10:07:15 +03:00
parent c8a9fe5b07
commit 20919a06a1
4 changed files with 1 additions and 426 deletions

View File

@@ -385,26 +385,6 @@ function article_callback2(transport, id, feed_id) {
}
}
function view_offline(id, feed_id) {
try {
enableHotkeys();
showArticleInHeadlines(id);
if (db) {
db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
}
render_article("FIXME");
update_local_feedlist_counters();
return false;
} catch (e) {
exception_error("view_offline", e);
}
}
function view(id, feed_id, skip_history) {
try {