1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/scripts/livetvguide.js
2016-04-27 00:22:32 -04:00

17 lines
No EOL
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
});
}
};
});