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

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

$(document).ready(main);