summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-20 15:32:16 +0100
committerAndrew Dolgov <[email protected]>2006-08-20 15:32:16 +0100
commit52db9978a7ab035b19de4a1c5587602f0c7c8ee0 (patch)
tree180c40eb018ceb5310e764c79dec9f27eac94db0 /tt-rss.js
parent918e60e313c8ebd01260cb7de2bdf9b22d01d342 (diff)
normalize title in front pages, fix filter query in update process
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 9f83cc5be..771114d5b 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -186,6 +186,8 @@ function scheduleFeedUpdate(force) {
xmlhttp.abort();
}
+ debug("REFETCH query: " + query_str);
+
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=refetch_callback;
@@ -538,7 +540,7 @@ function toggleDispRead() {
function parse_runtime_info(elem) {
var param = elem.firstChild;
- debug("parse_runtime_info");
+ debug("parse_runtime_info: " + param);
while (param) {
var k = param.getAttribute("key");