summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 9951636cb..08b66a3cd 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -6,6 +6,9 @@ function headlines_callback() {
var f = document.getElementById("headlines-frame");
f.innerHTML = xmlhttp.responseText;
update_all_counters();
+ if (typeof correctPNG != 'undefined') {
+ correctPNG();
+ }
notify("");
}
}
@@ -15,6 +18,9 @@ function article_callback() {
debug("article_callback");
var f = document.getElementById("content-frame");
f.innerHTML = xmlhttp.responseText;
+ if (typeof correctPNG != 'undefined') {
+ correctPNG();
+ }
update_all_counters();
}
}