Allow bulk selection by holding shift

This commit is contained in:
Gabriel Veit
2024-05-11 21:37:30 +01:00
parent 0267d05e83
commit 3cb7d4a0fe
3 changed files with 44 additions and 6 deletions

View File

@@ -3,8 +3,6 @@ if (typeof window.globalsLoaded === 'undefined') {
window.globalsLoaded = true;
let lastChecked = null;
let Selectors = {
// Plus 用户的选择器
conversationsCheckbox: '.conversation-checkbox:checked',
@@ -17,7 +15,7 @@ if (typeof window.globalsLoaded === 'undefined') {
let CHECKBOX_CLASS = 'conversation-checkbox';
window.lastChecked = lastChecked;
window.shiftPressed = false;
window.Selectors = Selectors;
window.CHECKBOX_CLASS = CHECKBOX_CLASS;
} else {