jellyfin-web/dashboard-ui/scripts/homefavorites.js
Luke Pulverenti 88d6c63263 use strict
2016-10-23 01:11:46 -04:00

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