summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-07 09:06:38 +0100
committerAndrew Dolgov <[email protected]>2006-12-07 09:06:38 +0100
commitcf4d339c28240f0390524335c7d8effdc3a63068 (patch)
tree0a03717381b82a9d29d4090ee6025ec3646d2d6d /functions.js
parent0b126ac277ed5480ef6090ddc7a23a15d21f2960 (diff)
support omode in rpc getAllCounters
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index a3a46a9c9..bde6098a3 100644
--- a/functions.js
+++ b/functions.js
@@ -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);