Jump to Date


try { var t = el; if (t && (!t.classList || !t.classList.contains('more-trigger'))) { t = t.closest('.more-trigger'); } if (!t) return; var target = findTarget(t); if (!target) return; var hidden = target.hasAttribute('hidden'); if (hidden) { target.removeAttribute('hidden'); t.textContent = '[Less]'; t.setAttribute('aria-expanded', 'true'); try { target.scrollIntoView({ behavior:'smooth', block:'start' }); } catch (e) {} } else { target.setAttribute('hidden',''); t.textContent = '[More]'; t.setAttribute('aria-expanded', 'false'); } } catch (e) {} }; })();