Sha256: b6c2eb14e3b379fe4a23450053410548e166a9ffdf0ad2ab2dcba61940e06b9d
Contents?: true
Size: 355 Bytes
Versions: 13
Compression:
Stored size: 355 Bytes
Contents
<script> const activeBtns = document.querySelectorAll('.collapsible.active') // check if there are any active buttons, and open the content for each of them as default if (activeBtns.length) { activeBtns.forEach(btn => { const content = btn.nextElementSibling content.style.maxHeight = content.scrollHeight + 'px' }) } </script>
Version data entries
13 entries across 13 versions & 1 rubygems