UNPKG

526 BJavaScriptView Raw
1/*!
2 * Aside adjustment
3 *
4 * Pico.css - https://picocss.com
5 * Copyright 2019 - Licensed under MIT
6 */
7
8(function() {
9
10 if (window.matchMedia("(min-width: 992px)").matches) {
11
12 // Close details if aside > nav have a scrollbar
13 var nav = document.querySelector("aside nav");
14 var navDetails = document.querySelectorAll("aside details");
15
16 if (nav.clientHeight < nav.scrollHeight) {
17 for (var i = 1; i < navDetails.length; i++) {
18 navDetails[i].removeAttribute("open");
19 }
20 }
21 }
22
23})();