blow/static/js/main.js
Thomas Chartron 94807c5623 update
2021-11-04 23:55:27 +01:00

10 lines
440 B
JavaScript

document.addEventListener("DOMContentLoaded", function() {
// ---------------- Selected
let navbar_links = document.querySelector('#nav-links').children;
let current_location = window.location.href;
let selected_navbar_link = [...navbar_links].find((item) => {
return (item.href === current_location)
})
selected_navbar_link.className = "bg-gray-900 text-white px-3 py-2 rounded-md text-sm font-medium"
});