hideOrShowFeedsCategory: fix for offline feedlist
This commit is contained in:
parent
45a6446d87
commit
f4ce1f83d1
37
functions.js
37
functions.js
|
@ -855,24 +855,27 @@ function hideOrShowFeedsCategory(id, hide) {
|
||||||
|
|
||||||
// debug("end cat: " + node.id + " unread " + cat_unread);
|
// debug("end cat: " + node.id + " unread " + cat_unread);
|
||||||
|
|
||||||
if (cat_unread == 0) {
|
if (cat_node) {
|
||||||
if (cat_node.style == undefined) {
|
|
||||||
debug("ERROR: supplied cat_node " + cat_node +
|
if (cat_unread == 0) {
|
||||||
" has no styles. WTF?");
|
if (cat_node.style == undefined) {
|
||||||
return;
|
debug("ERROR: supplied cat_node " + cat_node +
|
||||||
}
|
" has no styles. WTF?");
|
||||||
if (hide) {
|
return;
|
||||||
//cat_node.style.display = "none";
|
}
|
||||||
Effect.Fade(cat_node, {duration : 0.3,
|
if (hide) {
|
||||||
queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }});
|
//cat_node.style.display = "none";
|
||||||
|
Effect.Fade(cat_node, {duration : 0.3,
|
||||||
|
queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }});
|
||||||
|
} else {
|
||||||
|
cat_node.style.display = "list-item";
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
cat_node.style.display = "list-item";
|
try {
|
||||||
}
|
cat_node.style.display = "list-item";
|
||||||
} else {
|
} catch (e) {
|
||||||
try {
|
debug(e);
|
||||||
cat_node.style.display = "list-item";
|
}
|
||||||
} catch (e) {
|
|
||||||
debug(e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue