1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 23:35:57 +00:00

Merge branch 'master' of fakecake.org:public_html/testbox/tt-rss

This commit is contained in:
Andrew Dolgov
2011-01-18 16:28:05 +03:00

View File

@@ -315,9 +315,10 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
var box = this._itemNodesMap[id]; var box = this._itemNodesMap[id];
if (box) { if (box) {
box = box[0].containerNode.parentNode.parentNode; var row = box[0].rowNode;
var cat = box[0].rowNode.parentNode.parentNode;
if (Element.visible(box)) { if (Element.visible(cat) && Element.visible(row)) {
item = items[j]; item = items[j];
break; break;
} }
@@ -352,13 +353,15 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
var box = this._itemNodesMap[id]; var box = this._itemNodesMap[id];
if (box) { if (box) {
box = box[0].containerNode.parentNode.parentNode; var row = box[0].rowNode;
var cat = box[0].rowNode.parentNode.parentNode;
if (Element.visible(box)) { if (Element.visible(cat) && Element.visible(row)) {
item = items[j]; item = items[j];
break; break;
} }
} }
} }
break; break;
} }