mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update recordings
This commit is contained in:
parent
58bb39c2d1
commit
70393a9136
10 changed files with 188 additions and 127 deletions
|
@ -2,6 +2,23 @@
|
|||
|
||||
function getTimersHtml(timers) {
|
||||
|
||||
var items = timers.map(function (t) {
|
||||
t.Type = 'Timer';
|
||||
return t;
|
||||
});
|
||||
|
||||
var html = LibraryBrowser.getPosterViewHtml({
|
||||
items: items,
|
||||
shape: "square",
|
||||
showTitle: true,
|
||||
showAirTime: true,
|
||||
lazy: true,
|
||||
cardLayout: true,
|
||||
showDetailsMenu: true
|
||||
});
|
||||
|
||||
return Promise.resolve(html);
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue