summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-13 10:36:27 +0100
committerAndrew Dolgov <[email protected]>2005-12-13 10:36:27 +0100
commitc3f348c2fa79c2026774a9c2fd412406e36a3f2f (patch)
treed7b88d97b89b4f2f3a24695a3746dba63cb86bb7 /functions.js
parent280ee9a3398c8fecd975f22147eb5f8c10552b77 (diff)
fix broken keyboard navigation
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.js b/functions.js
index a77854827..8f18f4c47 100644
--- a/functions.js
+++ b/functions.js
@@ -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;
}