mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
continue jquery removal
This commit is contained in:
parent
443878a501
commit
ba14c457e8
7 changed files with 216 additions and 152 deletions
|
@ -3298,11 +3298,11 @@
|
|||
|
||||
html = Globalize.translate(translationKey, html);
|
||||
|
||||
elem.show().html(html).trigger('create');
|
||||
|
||||
elem.innerHTML = html;
|
||||
elem.classList.remove('hide');
|
||||
|
||||
} else {
|
||||
elem.hide();
|
||||
elem.classList.add('hide');
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -3358,9 +3358,10 @@
|
|||
|
||||
renderAwardSummary: function (elem, item) {
|
||||
if (item.AwardSummary) {
|
||||
elem.show().html(Globalize.translate('ValueAwards', item.AwardSummary));
|
||||
elem.classList.remove('hide');
|
||||
elem.innerHTML = Globalize.translate('ValueAwards', item.AwardSummary);
|
||||
} else {
|
||||
elem.hide();
|
||||
elem.classList.add('hide');
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue