Link Here
|
5 |
$('#navmenulist a[href$="/cgi-bin/koha/labels/label-home.pl"]').css('font-weight','bold'); |
5 |
$('#navmenulist a[href$="/cgi-bin/koha/labels/label-home.pl"]').css('font-weight','bold'); |
6 |
} else if (path.indexOf("patroncards") >= 0 ) { |
6 |
} else if (path.indexOf("patroncards") >= 0 ) { |
7 |
$('#navmenulist a[href$="/cgi-bin/koha/patroncards/home.pl"]').css('font-weight','bold'); |
7 |
$('#navmenulist a[href$="/cgi-bin/koha/patroncards/home.pl"]').css('font-weight','bold'); |
8 |
} else if (path.indexOf("patron_lists") >= 0 ) { |
8 |
} else if (path.indexOf("patron_lists") >= 0 ) { |
9 |
$('#navmenulist a[href$="/cgi-bin/koha/patron_lists/lists.pl"]').css('font-weight','bold'); |
9 |
$('#navmenulist a[href$="/cgi-bin/koha/patron_lists/lists.pl"]').css('font-weight','bold'); |
|
|
10 |
} else if ((path+location.search).indexOf("del") >= 0 ) { |
11 |
$('#navmenulist a[href$="/cgi-bin/koha/tools/batchMod.pl?del=1"]').css('font-weight','bold'); |
10 |
} else { |
12 |
} else { |
11 |
$('#navmenulist a[href$="/' + path + '"]').css('font-weight','bold'); |
13 |
$('#navmenulist a[href$="/' + path + '"]').css('font-weight','bold'); |
12 |
} |
14 |
} |
13 |
- |
|
|