[vier] Fix accordion logic in templates/settings/profile/index

This commit is contained in:
Hypolite Petovan 2020-05-08 09:06:28 -04:00
parent e53e471b6b
commit eb09bdfc96
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
//$('.toggle-section-content + .toggle-section-content').hide();
$('.js-section-toggler').click(function () {
$('.toggle-section-content').hide();
$(this).next('.toggle-section-content').toggle();
$(this).parents('.toggle-section').find('.toggle-section-content').toggle();
});
});
</script>