summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-09-29 05:45:26 +0100
committerAndrew Dolgov <[email protected]>2006-09-29 05:45:26 +0100
commit935f235da7481a6d5d06168f484bd9f2aa0f6ccd (patch)
treeb218ee6e3b579b835cd43f41d285119d5472e11d /viewfeed.js
parent11befbb22ff3761a1d29c93fd80cc7b75502bd84 (diff)
msie compatibility fixes
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();
}
}