mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-06 21:21:24 -07:00
parent
9c26e5d4d6
commit
9feefc8144
27 changed files with 174 additions and 240 deletions
|
@ -33,11 +33,9 @@
|
|||
|
||||
"use strict";
|
||||
|
||||
if (window.qBittorrent === undefined)
|
||||
window.qBittorrent = {};
|
||||
|
||||
window.qBittorrent.DynamicTable = (function() {
|
||||
const exports = function() {
|
||||
window.qBittorrent ??= {};
|
||||
window.qBittorrent.DynamicTable ??= (() => {
|
||||
const exports = () => {
|
||||
return {
|
||||
TorrentsTable: TorrentsTable,
|
||||
TorrentPeersTable: TorrentPeersTable,
|
||||
|
@ -3279,7 +3277,6 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
|
||||
return exports();
|
||||
})();
|
||||
|
||||
Object.freeze(window.qBittorrent.DynamicTable);
|
||||
|
||||
/*************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue