mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 08:25:57 +00:00
allow s, S, u hotkeys to work on selection instead of active article
This commit is contained in:
16
tt-rss.js
16
tt-rss.js
@@ -841,6 +841,7 @@ function hotkey_handler(e) {
|
||||
}
|
||||
|
||||
if (keycode == 16) return; // ignore lone shift
|
||||
if (keycode == 17) return; // ignore lone ctrl
|
||||
|
||||
if ((keycode == 70 || keycode == 67 || keycode == 71)
|
||||
&& !hotkey_prefix) {
|
||||
@@ -966,27 +967,18 @@ function hotkey_handler(e) {
|
||||
}
|
||||
|
||||
if (keycode == 83 && shift_key) { // S
|
||||
var id = getActiveArticleId();
|
||||
if (id) {
|
||||
togglePub(id);
|
||||
}
|
||||
selectionTogglePublished(undefined, false, true);
|
||||
return;
|
||||
}
|
||||
|
||||
if (keycode == 83) { // s
|
||||
var id = getActiveArticleId();
|
||||
if (id) {
|
||||
toggleMark(id);
|
||||
}
|
||||
selectionToggleMarked(undefined, false, true);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if (keycode == 85) { // u
|
||||
var id = getActiveArticleId();
|
||||
if (id) {
|
||||
toggleUnread(id);
|
||||
}
|
||||
selectionToggleUnread(undefined, false, true)
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user