From 8b35d171729f59a27b001cb16cef7de1e1c46fd0 Mon Sep 17 00:00:00 2001 From: Sunjay Cauligi Date: Fri, 5 Apr 2013 18:47:40 -0700 Subject: Added functionality for navigation without opening articles and toggling expansion of headlines --- js/tt-rss.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'js/tt-rss.js') 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(); }; -- cgit v1.2.3