mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
define(['components/favoriteitems'], function (favoriteItems) {
|
|
'use strict';
|
|
|
|
return function (view, params, tabContent) {
|
|
|
|
var self = this;
|
|
|
|
self.renderTab = function () {
|
|
|
|
var parentId = null;
|
|
favoriteItems.render(tabContent, Dashboard.getCurrentUserId(), parentId);
|
|
};
|
|
};
|
|
|
|
}); |