From c8c12d140f453fa8bc7175ec28d78e0a675f2dcb Mon Sep 17 00:00:00 2001 From: Andrew Cutler Date: Sun, 31 Mar 2024 13:11:05 -0400 Subject: [PATCH] use form, input name, and autcomplete to remember past URLs --- index.html | 8 ++++---- index.js | 1 + manifest.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 63094a4..19a8e8f 100644 --- a/index.html +++ b/index.html @@ -10,12 +10,12 @@
Server Location -
+
- - + + -
+
CLOSED diff --git a/index.js b/index.js index 71dbc21..4efa892 100644 --- a/index.js +++ b/index.js @@ -91,6 +91,7 @@ new function() { sendButton = $('#sendButton'); connectButton.click(function(e) { + e.preventDefault(); close(); open(); }); diff --git a/manifest.json b/manifest.json index 382f999..8ec1d3c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Simple WebSocket Client", "manifest_version": 2, - "version": "0.1.3", + "version": "0.2.3", "description": "Construct custom Web Socket requests and handle responses to directly test your Web Socket services.", "icons": { "16": "resources/icon_032.png",