1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:45:55 +00:00

invalidate local cache when view mode/limit is changed

This commit is contained in:
Andrew Dolgov
2008-02-23 06:44:13 +01:00
parent 93c841c4e5
commit 3c2d7945ae
3 changed files with 16 additions and 5 deletions

View File

@@ -823,7 +823,14 @@ function collapse_feedlist() {
} catch (e) {
exception_error(e, "toggle_feedlist");
}
}
function viewModeChanged() {
cache_empty();
return viewCurrentFeed(0, '')
}
function viewLimitChanged() {
cache_empty();
return viewCurrentFeed(0, '')
}