1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 15:25:56 +00:00

cdm: tweak the way hotkey article dismissing works; toggle select article by clicking on it

This commit is contained in:
Andrew Dolgov
2010-11-10 11:38:55 +03:00
parent 779560b7a3
commit bfa0e7921d
4 changed files with 25 additions and 4 deletions

View File

@@ -1006,8 +1006,9 @@ function hotkey_handler(e) {
}
if (keycode == 68 && shift_key) { // shift-D
if (isCdmMode() && active_post_id) {
cdmDismissArticle(active_post_id);
if (isCdmMode()) {
//cdmDismissArticle(active_post_id);
cdmDismissSelectedArticles();
}
}