cleanup previous patch

This commit is contained in:
Andrew Dolgov 2012-09-15 20:44:50 +04:00
parent 6cdc457643
commit 1a8a623924
1 changed files with 8 additions and 7 deletions

View File

@ -250,12 +250,6 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
var tree = this;
if (cat && cat.items) {
cat.items.each(function(child) {
if (child.items) {
tree.hideReadCat(child, hide, show_special);
}
});
var cat_unread = tree.hideReadFeeds(cat.items, hide, show_special);
var id = String(cat.id);
@ -299,7 +293,14 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
items.each(function(feed) {
var id = String(feed.id);
if (!id.match("^CAT:")) {
// it's a subcategory
if (feed.items) {
feed.items.each(function(child) {
if (child.items) {
tree.hideReadCat(child, hide, show_special);
}
});
} else { // it's a feed
var bare_id = parseInt(feed.bare_id);;
var unread = feed.unread[0];