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