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

offline: toggleCollapseCat() update status in local db

This commit is contained in:
Andrew Dolgov
2009-02-05 22:34:56 +03:00
parent 75aa83ec61
commit c26aa9f0e1
2 changed files with 12 additions and 0 deletions

View File

@@ -830,3 +830,13 @@ function gotoOnline() {
window.location.href = "tt-rss.php";
}
function local_collapse_cat(id) {
try {
if (db) {
db.execute("UPDATE categories SET collapsed = NOT collapsed WHERE id = ?",
[id]);
}
} catch (e) {
exception_error("local_collapse_cat", e);
}
}