jellyfin-web/dashboard-ui/scripts/homefavorites.js
2016-03-31 02:33:37 -04:00

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);
};
};
});