REVERT: save status

This commit is contained in:
2025-10-08 15:44:46 +02:00
parent 9d13a71dc1
commit 49aa08f4c6
5 changed files with 226 additions and 144 deletions

View File

@@ -0,0 +1,12 @@
"use strict";
class trdom_torrentmanager {
#element = document.createElement('div');
getElement() {
return this.#element;
}
constructor() {
this.#element.classList.add('trweb_torrentlistview', 'container-fluid');
}
}