.png?width=2000&height=1125&name=Untitled%20design%20(13).png)
Watch or listen to the full episode on Spotify — play it right here, no sign-in needed.
<script> (function() { function forceWidth() { var iframe = document.querySelector('#BambooHR iframe'); if (iframe) { iframe.style.cssText = 'width:100%;max-width:100%;min-width:100%;min-height:500px;'; iframe.setAttribute('width', '100%'); } document.querySelectorAll('#BambooHR > div, #BambooHR > div > div').forEach(function(el) { el.style.cssText = 'width:100%;max-width:100%;'; }); } // Initial attempts until iframe appears var attempts = 0; var interval = setInterval(function() { forceWidth(); attempts++; if (attempts > 50) clearInterval(interval); }, 200); // Watch for BambooHR resetting the width var observer = new MutationObserver(function() { forceWidth(); }); var checkTarget = setInterval(function() { var target = document.querySelector('#BambooHR'); if (target) { observer.observe(target, { attributes: true, childList: true, subtree: true, attributeFilter: ['style', 'width'] }); clearInterval(checkTarget); } }, 300); window.addEventListener('resize', forceWidth); })(); </script>