1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-28 16:01:27 +00:00

workaround for Opera cache of feeds/headlines panel; remove addheader param handling

This commit is contained in:
Andrew Dolgov
2006-02-26 15:07:22 +01:00
parent 362698addb
commit 59b8192f94
5 changed files with 69 additions and 68 deletions

View File

@@ -101,8 +101,14 @@ function viewfeed(feed, skip, subop, doc) {
var headlines_frame = parent.frames["headlines-frame"];
// alert(headlines_frame)
headlines_frame.location.href = query + "&addheader=true";
if (navigator.userAgent.match("Opera")) {
var date = new Date();
var timestamp = Math.round(date.getTime() / 1000);
query = query + "&ts=" + timestamp
}
headlines_frame.location.href = query;
cleanSelectedList("feedList");