summaryrefslogtreecommitdiff
path: root/frontend/index.js
blob: f481bc6aa3b556d44060e7d0b0a0b7367abba5b4 (plain)
1
2
3
4
5
6
7
8
9
10
/// <reference path="scripts/jquery-3.5.1.min.js"/>

(function() {
    function main() {
        const lPathName = window.location.pathname.length > 1 && window.location.pathname.startsWith('/') ? window.location.pathname.substr(1) : window.location.pathname;
        $('nav').find('a[href="' + lPathName + '"').addClass('nav-selected');
    }
    
    $(document).ready(main);
})()