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

msie compatibility fixes

This commit is contained in:
Andrew Dolgov
2006-09-29 05:45:26 +01:00
parent 11befbb22f
commit 935f235da7
4 changed files with 29 additions and 3 deletions

View File

@@ -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();
}
}