mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
15 lines
376 B
JavaScript
15 lines
376 B
JavaScript
define(['tvguide'], function (tvguide) {
|
|
|
|
return function (view, params, tabContent) {
|
|
|
|
var self = this;
|
|
var guideInstance;
|
|
|
|
self.renderTab = function () {
|
|
if (!guideInstance) {
|
|
guideInstance = new tvguide({
|
|
element: tabContent
|
|
});
|
|
}
|
|
};
|
|
};
|
|
}); |