recovers accordion aria attributes

This commit is contained in:
buttle 2021-11-24 11:22:01 +01:00
parent 6af87367eb
commit e951669cff
2 changed files with 6 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,12 +1,17 @@
$(function(){
$("#site-list").on( "click", ".accordion-title", function() {
var title = this
var content = $(this).closest('.accordion-item')
.find('.accordion-content')
if ($(content).is(':visible')) {
$(content).slideUp('fast')
$(this).closest('.accordion-item').removeClass('is-active')
$(title).attr('aria-expanded', false)
} else {
$(content).slideDown('fast')
$(this).closest('.accordion-item').addClass('is-active')
$(title).attr('aria-expanded', true)
}
return false;
});