summaryrefslogtreecommitdiffstats
path: root/ogcp/static/js
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-12 14:25:05 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-13 17:38:44 +0200
commit5533141ae93581463fa4dcc2677742274e32ea86 (patch)
tree676adfbda12d21c24d5c77e5250c04f819546096 /ogcp/static/js
parent3f16293fea546303775364e2d1f7404815db74f3 (diff)
js: remove unused variable in showSelectedClientsOnEvents
Remove declaration of 'container' variable as it is no longer used in the function.
Diffstat (limited to 'ogcp/static/js')
-rw-r--r--ogcp/static/js/ogcp.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js
index a52ff93..8916353 100644
--- a/ogcp/static/js/ogcp.js
+++ b/ogcp/static/js/ogcp.js
@@ -46,7 +46,6 @@ function showSelectedClient(client_checkbox) {
function showSelectedClientsOnEvents() {
const checkboxes = $('input:checkbox[form|="scopesForm"]');
- const container = $('#selected-clients');
checkboxes.on('change show-client', function () {
showSelectedClient(this);