mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update voice script
This commit is contained in:
parent
99f5167804
commit
9bdb4a323f
10 changed files with 125 additions and 29 deletions
|
@ -1049,6 +1049,13 @@
|
|||
PlaylistManager.showPanel(selection);
|
||||
}
|
||||
|
||||
function onListviewSubLinkClick(e) {
|
||||
|
||||
var elem = e.target;
|
||||
Dashboard.navigate(elem.getAttribute('data-href'));
|
||||
return false;
|
||||
}
|
||||
|
||||
function onItemWithActionClick(e) {
|
||||
|
||||
var elem = this;
|
||||
|
@ -1129,7 +1136,7 @@
|
|||
|
||||
toggleSelections(page);
|
||||
|
||||
}).on('click', '.itemWithAction', onItemWithActionClick);
|
||||
}).on('click', '.itemWithAction', onItemWithActionClick).on('click', '.listviewSubLink', onListviewSubLinkClick);
|
||||
|
||||
$('.itemsContainer', page).createCardMenus();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue