1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 08:35:56 +00:00

new option: FEEDS_FRAME_REFRESH (sort-of closes #12)

This commit is contained in:
Andrew Dolgov
2006-02-03 09:35:30 +01:00
parent 7d7cbaf5f8
commit f5de0d8da5
3 changed files with 11 additions and 1 deletions

View File

@@ -253,7 +253,12 @@ function viewfeed(feed, skip, subop) {
function timeout() {
scheduleFeedUpdate(false);
setTimeout("timeout()", 900*1000);
var refresh_time = getCookie('ttrss_vf_refresh');
if (!refresh_time) refresh_time = 600;
setTimeout("timeout()", refresh_time*1000);
}
function resetSearch() {