summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorSunjay Cauligi <[email protected]>2013-04-05 18:47:40 -0700
committerSunjay Cauligi <[email protected]>2013-04-05 18:57:05 -0700
commit8b35d171729f59a27b001cb16cef7de1e1c46fd0 (patch)
tree2e5725bdce5b1792ec15f8f51dc44306d48bc27d /js/tt-rss.js
parentb87bd8ed5655cdaa5962b9fa9fd31818e1cb2fc2 (diff)
Added functionality for navigation without opening articles and toggling expansion of headlines
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 51257a693..8c5a65749 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -282,6 +282,12 @@ function init() {
hotkey_actions["prev_article_noscroll"] = function() {
moveToPost('prev', true);
};
+ hotkey_actions["next_article_noexpand"] = function() {
+ moveToPost('next', true, true);
+ };
+ hotkey_actions["prev_article_noexpand"] = function() {
+ moveToPost('prev', true, true);
+ };
hotkey_actions["collapse_article"] = function() {
var id = getActiveArticleId();
var elem = $("CICD-"+id);
@@ -292,6 +298,16 @@ function init() {
cdmExpandArticle(id);
}
};
+ hotkey_actions["toggle_expand"] = function() {
+ var id = getActiveArticleId();
+ var elem = $("CICD-"+id);
+ if(elem.visible()) {
+ cdmUnexpandArticle(null, id);
+ }
+ else {
+ cdmExpandArticle(id);
+ }
+ };
hotkey_actions["search_dialog"] = function() {
search();
};