mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add multiselect help text
This commit is contained in:
parent
520cea9b43
commit
4d99db4b6b
7 changed files with 39 additions and 11 deletions
|
@ -108,7 +108,10 @@
|
|||
$(this).remove();
|
||||
});
|
||||
|
||||
$('.actionSheetMenuItem', dlg).on('click', function () {
|
||||
// Seeing an issue in some non-chrome browsers where this is requiring a double click
|
||||
var eventName = $.browser.chrome ? 'click' : 'mousedown';
|
||||
|
||||
$('.actionSheetMenuItem', dlg).on(eventName, function () {
|
||||
|
||||
var selectedId = this.getAttribute('data-id');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue