jellyfin-web/dashboard-ui/scripts/homefavorites.js

15 lines
343 B
JavaScript
Raw Normal View History

2016-03-30 23:33:37 -07:00
define(['components/favoriteitems'], function (favoriteItems) {
2016-10-22 22:11:46 -07:00
'use strict';
2016-03-30 23:33:37 -07:00
return function (view, params, tabContent) {
var self = this;
self.renderTab = function () {
var parentId = null;
favoriteItems.render(tabContent, Dashboard.getCurrentUserId(), parentId);
};
};
});