diff --git a/src/tqdm_publisher/_demo/_client.html b/src/tqdm_publisher/_demo/_client.html index bdd4d8e..0e514eb 100644 --- a/src/tqdm_publisher/_demo/_client.html +++ b/src/tqdm_publisher/_demo/_client.html @@ -70,6 +70,6 @@

tqdm_progress

-
+
diff --git a/src/tqdm_publisher/_demo/_client.js b/src/tqdm_publisher/_demo/_client.js index b078373..edf3670 100644 --- a/src/tqdm_publisher/_demo/_client.js +++ b/src/tqdm_publisher/_demo/_client.js @@ -26,7 +26,7 @@ class ProgressClient { this.socket = new WebSocket('ws://localhost:8000'); this.socket.addEventListener('open', onopen); - // Attemp to reconnect every second if the connection is closed + // Attempt to reconnect every second if the connection is closed this.socket.addEventListener('close', () => { onclose(); setTimeout(() => this.#connect(props), 1000);