fix broken counter update after view/viefeed

This commit is contained in:
Andrew Dolgov 2006-05-21 02:48:17 +01:00
parent 59a543f0ee
commit 0a17ba5eea
1 changed files with 18 additions and 13 deletions

View File

@ -659,7 +659,11 @@
print "</div>"; print "</div>";
print "<script type=\"text/javascript\"> print "<script type=\"text/javascript\">
update_all_counters('$feed_id'); try {
parent.update_all_counters('$feed_id');
} catch (e) {
exception_error('view/footer', e);
}
</script>"; </script>";
} }
@ -1212,27 +1216,28 @@
print "</div>"; print "</div>";
print "<script type=\"text/javascript\"> print "
<script type=\"text/javascript\">
try {
document.onkeydown = hotkey_handler; document.onkeydown = hotkey_handler;
// if (parent.daemon_enabled) parent.updateTitle('$feed_title'); parent.update_all_counters(\"$feed\");
update_all_counters('$feed'); } catch (e) {
</script>"; exception_error(\"viewfeed/footer1\", e);
}
print '
<script type="text/javascript">
/* for IE */ /* for IE */
function statechange() { function statechange() {
if (document.readyState == "interactive") init(); if (document.readyState == \"interactive\") init();
} }
if (document.readyState) { if (document.readyState) {
if (document.readyState == "interactive" || document.readyState == "complete") { if (document.readyState == \"interactive\" || document.readyState == \"complete\") {
init(); init();
} else { } else {
document.onreadystatechange = statechange; document.onreadystatechange = statechange;
} }
} }
</script>'; </script>";
print "</body></html>"; print "</body></html>";
} }