jellyfin-web/dashboard-ui/scripts/livetvguide.js

15 lines
376 B
JavaScript
Raw Normal View History

2016-05-15 10:11:26 -07:00
define(['tvguide'], function (tvguide) {
return function (view, params, tabContent) {
var self = this;
var guideInstance;
self.renderTab = function () {
if (!guideInstance) {
guideInstance = new tvguide({
element: tabContent
});
}
};
};
});