mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
updated nuget
This commit is contained in:
parent
4e815ceaf0
commit
4b951f485f
4 changed files with 16 additions and 35 deletions
|
@ -327,10 +327,14 @@
|
|||
|
||||
$('a', elem).on('click', function () {
|
||||
|
||||
var card = $(this).parents('.card');
|
||||
var textElem = $('.cardText', card);
|
||||
var card = this;
|
||||
|
||||
var text = textElem.html();
|
||||
if (!this.classList.contains('card')) {
|
||||
card = $(this).parents('.card')[0];
|
||||
}
|
||||
|
||||
var textElem = $('.cardText', card);
|
||||
var text = textElem.text();
|
||||
|
||||
LibraryMenu.setTitle(text);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue