13 lines
No EOL
451 B
JavaScript
13 lines
No EOL
451 B
JavaScript
window.addEventListener("resize", adjustListBorder);
|
|
|
|
let listRemoveWidth = window.matchMedia("(max-width: 1070px)");
|
|
let listAddWidth = window.matchMedia("(min-width: 1070px)");
|
|
|
|
function adjustListBorder(){
|
|
if (listRemoveWidth.matches) {
|
|
document.getElementById("articlesList").classList.remove("author-alc");
|
|
}
|
|
else if (listAddWidth.matches) {
|
|
document.getElementById("articlesList").classList.add("author-alc");
|
|
}
|
|
} |