summaryrefslogtreecommitdiffstats
path: root/js/gui
diff options
context:
space:
mode:
Diffstat (limited to 'js/gui')
-rw-r--r--js/gui/KeyboardShortcuts.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/gui/KeyboardShortcuts.js b/js/gui/KeyboardShortcuts.js
index 9fe50e46c..3b3634333 100644
--- a/js/gui/KeyboardShortcuts.js
+++ b/js/gui/KeyboardShortcuts.js
@@ -39,11 +39,11 @@
};
var getParentFolder = function (element) {
- return element.parent('ul').parent('li:visible');
+ return element.parent('ul').parent('.folder:visible');
};
var getChildFeed = function (element) {
- return element.children('ul').children('li:visible');
+ return element.children('ul').children('.feed:visible');
};
var nextFeed = function (navigationArea) {