EmbyCrackedClient/web/games/gamesystems.js

1 line
495 B
JavaScript
Raw Permalink Normal View History

2025-06-25 11:46:04 +08:00
import ItemsTab from"./../modules/tabbedview/itemstab.js";function GameSystemsTab(view,params,options){ItemsTab.apply(this,arguments)}Object.assign(GameSystemsTab.prototype,ItemsTab.prototype),GameSystemsTab.prototype.loadTemplate=function(){return this.loadItemsTemplate()},GameSystemsTab.prototype.getSettingsKey=function(){return ItemsTab.prototype.getSettingsKey.call(this)+"-gamesystems"},GameSystemsTab.prototype.getItemTypes=function(){return["GameSystem"]};export default GameSystemsTab;