1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

unify guide between web and theater

This commit is contained in:
Luke Pulverenti 2016-04-26 14:28:04 -04:00
parent e8c224ae0b
commit af4e8c5529
23 changed files with 1314 additions and 1024 deletions

View file

@ -1,4 +1,4 @@
define([], function () {
define(['tvguide', 'embyRouter'], function (tvguide, embyRouter) {
window.LiveTvPage.initGuideTab = function (page, tabContent) {
@ -11,12 +11,9 @@
page.guideInstance.refresh();
}
} else {
require(['tvguide'], function (tvguide) {
page.guideInstance = new tvguide({
element: tabContent,
enableHeadRoom: true
});
page.guideInstance = new tvguide({
element: tabContent,
enableHeadRoom: true
});
}
};