1
0
Fork 0
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:
Luke Pulverenti 2015-10-14 22:55:19 -04:00
parent 520cea9b43
commit 4d99db4b6b
7 changed files with 39 additions and 11 deletions

View file

@ -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');