1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 12:15:54 +00:00

fix broken keyboard navigation

This commit is contained in:
Andrew Dolgov
2005-12-13 10:36:27 +01:00
parent 280ee9a339
commit c3f348c2fa
2 changed files with 6 additions and 4 deletions

View File

@@ -152,7 +152,7 @@ function cleanSelectedList(element) {
var child = content.childNodes[i];
if (child.id == "feedCatHolder") {
var fcat = child.firstChild;
var fcat = child.lastChild;
for (j = 0; j < fcat.childNodes.length; j++) {
var feed = fcat.childNodes[j];
feed.className = feed.className.replace("Selected", "");
@@ -584,7 +584,7 @@ function getRelativeFeedId(list, id, direction) {
for (i = 0; i < list.childNodes.length; i++) {
var child = list.childNodes[i];
if (child.id == "feedCatHolder") {
if (child.firstChild) {
if (child.lastChild) {
var cr = getRelativeFeedId(child.firstChild, id, direction);
if (cr) return cr;
}