1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

support omode in rpc getAllCounters

This commit is contained in:
Andrew Dolgov
2006-12-07 09:06:38 +01:00
parent 0b126ac277
commit cf4d339c28
5 changed files with 50 additions and 26 deletions
+6
View File
@@ -782,6 +782,12 @@ function update_all_counters(feed) {
query = query + "&aid=" + feed;
}
if (tagsAreDisplayed()) {
query = query + "&omode=lt";
}
debug("update_all_counters QUERY: " + query);
xmlhttp_rpc.open("GET", query, true);
xmlhttp_rpc.onreadystatechange=all_counters_callback;
xmlhttp_rpc.send(null);