summaryrefslogtreecommitdiffstats
path: root/public/media/js/script.js
blob: 546e1f696089df6843214bd03d75fd8a5b596cc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(document).ready(function() {
	path = window.location.pathname.split('/');
	if (path[3] == 'showall') {
		mypath = '/' + path[1] + '/' + path[2] + '/' + path[3];
	} else {
		mypath = '/' + path[1] + '/' + path[2];
	}
	$('.portletNavigationTree a').each(function() {
		if ($(this).attr('href') == mypath) {
			/* console.log($(this).parent()); */
			$(this).addClass('navTreeCurrentNode');
			$(this).addClass('navTreeCurrentItem');
		}
	});
});