From 1ede58149d1fc7929a1daa8c37ee843398dc8e99 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 11 Nov 2010 13:37:03 +0300 Subject: allow selecting multiple headlines/articles by ctrl-click; change click handling on CDM article content --- tt-rss.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 917196ba9..b97a19aa1 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -953,10 +953,11 @@ function hotkey_handler(e) { } if (keycode == 68 && shift_key) { // shift-D - if (isCdmMode()) { - //cdmDismissArticle(active_post_id); - cdmDismissSelectedArticles(); - } + dismissSelectedArticles(); + } + + if (keycode == 88 && shift_key) { // shift-X + dismissReadArticles(); } if (keycode == 78 || keycode == 40) { // n, down -- cgit v1.2.3-54-g00ecf