mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
17 lines
347 B
JavaScript
17 lines
347 B
JavaScript
define(['tvguide'], function (tvguide) {
|
|
|
|
window.LiveTvPage.initGuideTab = function (page, tabContent) {
|
|
|
|
};
|
|
|
|
window.LiveTvPage.renderGuideTab = function (page, tabContent) {
|
|
|
|
if (!page.guideInstance) {
|
|
|
|
page.guideInstance = new tvguide({
|
|
element: tabContent
|
|
});
|
|
}
|
|
};
|
|
|
|
}); |