1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 01:21:28 +00:00

code cleanups

This commit is contained in:
Andrew Dolgov
2006-09-29 04:04:48 +01:00
parent 59cc876cec
commit 9cb999060f
3 changed files with 9 additions and 13 deletions

View File

@@ -145,7 +145,7 @@ function notify_real(msg, doc, no_hide, is_err) {
}
function p_notify(msg, no_hide, is_err) {
notify_real(msg, parent.document, no_hide, is_err);
notify_real(msg, document, no_hide, is_err);
}
function notify(msg, no_hide, is_err) {
@@ -246,7 +246,7 @@ function cleanSelectedList(element) {
for (i = 0; i < content.childNodes.length; i++) {
var child = content.childNodes[i];
if (child.id == "feedCatHolder") {
parent.debug(child.id);
debug(child.id);
var fcat = child.lastChild;
for (j = 0; j < fcat.childNodes.length; j++) {
var feed = fcat.childNodes[j];
@@ -539,10 +539,7 @@ function parse_counters(reply, scheduled_call) {
if (feedctr && feedu && feedr) {
if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
// var hf = title_obj.parent.frames["headlines-frame"];
// hf.location.reload(true);
viewCurrentFeed();
}
feedu.innerHTML = ctr;