mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
display movie budget
This commit is contained in:
parent
4cb7ebfc88
commit
8785935d23
5 changed files with 13 additions and 6 deletions
|
@ -846,6 +846,14 @@
|
|||
elem.show().html(html).trigger('create');
|
||||
|
||||
|
||||
} else {
|
||||
elem.hide();
|
||||
}
|
||||
},
|
||||
|
||||
renderBudget: function (elem, item) {
|
||||
if (item.Budget) {
|
||||
elem.show().html('Budget: $' + item.Budget);
|
||||
} else {
|
||||
elem.hide();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue