SamNHS
SamNHS
Something like checking if the ctrl key is used may work (not tested): ```js card.addEventListener('click', (event) => { if (event.ctrlKey) { window.open(card.querySelector('a').getAttribute('href')); } else { card.querySelector('a').click(); } }); ``` Although...
I think it may make sense to use the `.js-enabled` class for elements that are only clickable when JavaScript is enabled. The workaround now is to override the style: ```css...
This will also need an update to the package.json as it is currently `"sass": "^1.32.11"` and `math.div` requires sass 1.33 or later