mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-06 21:21:24 -07:00
parent
a23f45cc70
commit
81def39d8c
8 changed files with 304 additions and 87 deletions
|
@ -50,7 +50,8 @@ window.qBittorrent.DynamicTable ??= (() => {
|
|||
RssArticleTable: RssArticleTable,
|
||||
RssDownloaderRulesTable: RssDownloaderRulesTable,
|
||||
RssDownloaderFeedSelectionTable: RssDownloaderFeedSelectionTable,
|
||||
RssDownloaderArticlesTable: RssDownloaderArticlesTable
|
||||
RssDownloaderArticlesTable: RssDownloaderArticlesTable,
|
||||
TorrentWebseedsTable: TorrentWebseedsTable
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -3251,6 +3252,14 @@ window.qBittorrent.DynamicTable ??= (() => {
|
|||
}
|
||||
});
|
||||
|
||||
const TorrentWebseedsTable = new Class({
|
||||
Extends: DynamicTable,
|
||||
|
||||
initColumns: function() {
|
||||
this.newColumn("url", "", "QBT_TR(URL)QBT_TR[CONTEXT=HttpServer]", 500, true);
|
||||
},
|
||||
});
|
||||
|
||||
return exports();
|
||||
})();
|
||||
Object.freeze(window.qBittorrent.DynamicTable);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue