Owen Leonard
0254b4e87d
This patch reorganizes the way sidebar menus get highlighted based on the current page. A global function is added to handle most cases. Individual menu-handling scripts have been modified to handle only the edge cases which aren't covered by the global one. A new class is added to the global CSS file so that highlighted menu links can be custom-styled. To test, apply the patch and clear your cache if necessary. View various pages to confirm that current-page-highlighting in the sidebar menu is working correctly and that there are no JS errors in the browser console. For example: - Administration -> Currencies and exchange rates. - Acquisitions -> Invoices - Tools -> Patron lists - Tools -> Export And with CircSidebar turned on test various circulation pages, e.g. - Circulation -> Set library Signed-off-by: Charles Farmer <charles.farmer@inLibro.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
14 lines
1,008 B
JavaScript
14 lines
1,008 B
JavaScript
$(document).ready(function() {
|
|
var path = location.pathname.substring(1);
|
|
if (path == "cgi-bin/koha/admin/marctagstructure.pl" || path == "cgi-bin/koha/admin/marc_subfields_structure.pl") {
|
|
$('#navmenulist a[href$="/cgi-bin/koha/admin/biblio_framework.pl"]').addClass("current");
|
|
} else if (path == "cgi-bin/koha/admin/auth_tag_structure.pl" || path == "cgi-bin/koha/admin/auth_subfields_structure.pl") {
|
|
$('#navmenulist a[href$="/cgi-bin/koha/admin/authtypes.pl"]').addClass("current");
|
|
} else if (path == "cgi-bin/koha/admin/oai_set_mappings.pl") {
|
|
$('#navmenulist a[href$="/cgi-bin/koha/admin/oai_sets.pl"]').addClass("current");
|
|
} else if (path == "cgi-bin/koha/admin/items_search_field.pl") {
|
|
$('#navmenulist a[href$="/cgi-bin/koha/admin/items_search_fields.pl"]').addClass("current");
|
|
} else if (path == "cgi-bin/koha/admin/clone-rules.pl") {
|
|
$('#navmenulist a[href$="/cgi-bin/koha/admin/smart-rules.pl"]').addClass("current");
|
|
}
|
|
});
|