UI - Hiding noisy info under 'show advanced help' button (#2609)

This commit is contained in:
dgtlmoon
2024-09-06 14:33:06 +02:00
committed by GitHub
parent 5b70625eaa
commit eaccd6026c
5 changed files with 26 additions and 16 deletions

View File

@@ -18,9 +18,11 @@ $(document).ready(function () {
});
$("#notification-token-toggle").click(function (e) {
$(".toggle-show").click(function (e) {
e.preventDefault();
$('#notification-tokens-info').toggle();
let target = $(this).data('target');
$(target).toggle();
});
});