diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-12 14:25:05 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-13 17:38:44 +0200 |
commit | 5533141ae93581463fa4dcc2677742274e32ea86 (patch) | |
tree | 676adfbda12d21c24d5c77e5250c04f819546096 | |
parent | 3f16293fea546303775364e2d1f7404815db74f3 (diff) |
js: remove unused variable in showSelectedClientsOnEvents
Remove declaration of 'container' variable as it is no longer
used in the function.
-rw-r--r-- | ogcp/static/js/ogcp.js | 1 |
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); |