diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-17 09:49:30 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-17 10:03:44 +0200 |
commit | 664ad2bf7bad8014c024ce1b0f247f394a2fcaa4 (patch) | |
tree | 87c5c8c4d139b1967f2be726c094637ae733acbe | |
parent | a637a958b005cfdcfe2b9327e32e51aa23bd30f7 (diff) |
templates: remove console.log statement in mode.html
Remove print statement generating noise in the browser logs
-rw-r--r-- | ogcp/templates/actions/mode.html | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ogcp/templates/actions/mode.html b/ogcp/templates/actions/mode.html index c765f4b..7cefd15 100644 --- a/ogcp/templates/actions/mode.html +++ b/ogcp/templates/actions/mode.html @@ -57,7 +57,6 @@ $('.badge-pill').each(function(index) { for (const mode in modesSet) { for (const clientName of modesSet[mode]) { - console.log(mode, clientName, $(this).html()) if ($(this).html().includes(clientName)) { $(this).html($(this).html() + '<br>mode: ' + mode); break; |