EmbyCrackedClient/web/modules/tabbedview/folderstab.js
2025-06-25 11:46:04 +08:00

1 line
No EOL
619 B
JavaScript

import ItemsTab from"./itemstab.js";function FoldersTab(view,params,options){ItemsTab.apply(this,arguments)}Object.assign(FoldersTab.prototype,ItemsTab.prototype),FoldersTab.prototype.supportsAlphaPicker=function(){return!0},FoldersTab.prototype.isRecursiveQuery=function(){return!1},FoldersTab.prototype.getContext=function(){return"folders"},FoldersTab.prototype.getSettingsKey=function(){return ItemsTab.prototype.getSettingsKey.call(this)+"-folders"},FoldersTab.prototype.getVisibleFilters=function(){return[]},FoldersTab.prototype.loadTemplate=function(){return this.loadItemsTemplate()};export default FoldersTab;