03dcb8257931dff52d9775d8aea71e2bd23a8db5
[plack-app-gruntmaster.git] / js / 90-nav.js
1 const NAVS = {
2 home: /^\/$/,
3 pb: /^\/(?:pb|sol)\//,
4 ct: /^\/(?:ct|st|ed)\//,
5 log: /^\/log\//,
6 us: /^\/us\//,
7 account: /^\/account$/,
8 contribute: /^\/contribute$/,
9 };
10
11 $(function(){
12 let path = location.pathname;
13 for (let nav in NAVS)
14 if(path.match(NAVS[nav]))
15 $('#nav-' + nav)[0].classList.add('active');
16 });
This page took 0.020386 seconds and 3 git commands to generate.