This commit is contained in:
2024-12-30 22:59:45 +01:00
parent a271e866fd
commit c1ef7fceab
37 changed files with 513 additions and 293 deletions

View File

@@ -1,4 +1,17 @@
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P3LTD4T"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- End Google Tag Manager (noscript) -->
<script type="text/javascript">
$( function() {
$( 'body' ).on( 'click', '.panel-group .panel-title a', function(e){
e.preventDefault();
var id = $( this ).attr( 'aria-controls' );
$( '.panel-group .panel-title a' ).removeClass( 'active' );
$( '.panel-group .panel div[role="tabpanel"]' ).removeClass( 'show' );
$( '#' + id ).addClass( 'show' );
$( this ).addClass( 'active' );
});
})
</script>