I am using https://github.com/paulirish/matchMedia.js/ along with the listener extension, however, I do not know how to write a listener for the match media query below. Any assistance would be much obliged.
JS:
if (matchMedia("(min-width: 52em)").matches) {
$("details").attr("open", "open");
}