1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Backport pull request #5660 from jellyfin-web/release-10.9.z

Fixed being unable to properly long press on cards to multiselect on Firefox

Original-merge: 5680c18ade

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
ConnorS1110 2024-06-05 17:03:51 -04:00 committed by Joshua M. Boniface
parent a24eb4533d
commit 0e07d8a19a

View file

@ -99,9 +99,7 @@ function showSelection(item, isChecked) {
parent.appendChild(itemSelectionPanel);
let cssClass = 'chkItemSelect';
if (isChecked && !browser.firefox) {
// In firefox, the initial tap hold doesnt' get treated as a click
// In other browsers it does, so we need to make sure that initial click is ignored
if (isChecked) {
cssClass += ' checkedInitial';
}
const checkedAttribute = isChecked ? ' checked' : '';