(container)
| 1441 | |
| 1442 | class NetworkInfoPanel { |
| 1443 | constructor(container) { |
| 1444 | this.container = container; |
| 1445 | if (!this.container) { |
| 1446 | throw new Error("Netzwerkinfo-Container nicht gefunden."); |
| 1447 | } |
| 1448 | this.numberFormatter = new Intl.NumberFormat("de-DE"); |
| 1449 | this.build(); |
| 1450 | } |
| 1451 | |
| 1452 | build() { |
| 1453 | this.container.innerHTML = ""; |