
<button class="hiq-expandable-box__decoration" #if(!$isEdit) data-toggle="#svid${contentId} .hiq-expandable-box__decoration-content" #end>
	<h3 class="hiq-h3">$!contentName</h3>
	<span class="hiq-expandable-box__decoration-icon rs_skip" aria-hidden="true"></span>
</button>

<script>
window.svDocReady(function() {
  let listenBtn = document.querySelector('.hiq-toplinks-listen');

  listenBtn.addEventListener('click', function() {
   let decorationBtn = document.querySelectorAll('.hiq-expandable-box__decoration');
    let decorationContent = document.querySelectorAll('.hiq-expandable-box__decoration-content');

    if(decorationBtn.length > 0) {
      decorationBtn.forEach(function(btn) {
        btn.ariaExpanded = 'true';
      })
    }

    if(decorationContent.length > 0) {
      decorationContent.forEach(function(cnt) {
        cnt.dataset.open = 'true';
        cnt.classList.add('expanded-true')
      })
    }
  })
})
</script> 