1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

updated nuget

This commit is contained in:
Luke Pulverenti 2015-07-10 14:30:42 -04:00
parent 4e815ceaf0
commit 4b951f485f
4 changed files with 16 additions and 35 deletions

View file

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