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

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

This commit is contained in:
Connor Smith 2024-06-04 22:37:08 -04:00
parent ab781678c1
commit c35cec5c77

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' : '';