The joy of life consists in the exercise of one's energies, continual growth, constant change, the enjoyment of every new experience.
2
/* Fix: release links must always navigate (theme one-page JS + lightbox were hijacking clicks) */
document.addEventListener('click', function(e){
var a = e.target.closest ? e.target.closest('a') : null;
if(!a) return;
var href = a.getAttribute('href') || '';
if(href.indexOf('/release/') !== -1){
if(e.stopImmediatePropagation) e.stopImmediatePropagation(); else e.stopPropagation();
e.preventDefault();
window.location.href = href;
}
}, true);