1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 05:55:55 +00:00

correct PNGs in some pref callbacks

This commit is contained in:
Andrew Dolgov
2007-04-23 10:04:27 +01:00
parent e12a547eb9
commit 4bbc659591

View File

@@ -42,7 +42,7 @@ function feedlist_callback() {
caller_subop = false;
}
correctPNG();
notify("");
} catch (e) {
exception_error("feedlist_callback", e);
@@ -54,6 +54,7 @@ function filterlist_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
correctPNG();
notify("");
}
}
@@ -76,6 +77,7 @@ function labellist_callback() {
checkbox.checked = true;
}
}
correctPNG();
notify("");
}
}