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:
parent
a24eb4533d
commit
0e07d8a19a
1 changed files with 1 additions and 3 deletions
|
@ -99,9 +99,7 @@ function showSelection(item, isChecked) {
|
||||||
parent.appendChild(itemSelectionPanel);
|
parent.appendChild(itemSelectionPanel);
|
||||||
|
|
||||||
let cssClass = 'chkItemSelect';
|
let cssClass = 'chkItemSelect';
|
||||||
if (isChecked && !browser.firefox) {
|
if (isChecked) {
|
||||||
// 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
|
|
||||||
cssClass += ' checkedInitial';
|
cssClass += ' checkedInitial';
|
||||||
}
|
}
|
||||||
const checkedAttribute = isChecked ? ' checked' : '';
|
const checkedAttribute = isChecked ? ' checked' : '';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue