Bugzilla – Attachment 152728 Details for
Bug 34131
Plugins page breadcrumbs and side menu not consistent
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34131: Add 'current' class on correct side menu link
Bug-34131-Add-current-class-on-correct-side-menu-l.patch (text/plain), 1.45 KB, created by
Pedro Amorim
on 2023-06-27 12:47:27 UTC
(
hide
)
Description:
Bug 34131: Add 'current' class on correct side menu link
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2023-06-27 12:47:27 UTC
Size:
1.45 KB
patch
obsolete
>From 189b1131cc721caf57be2502484dc84bef4216a6 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Tue, 27 Jun 2023 12:38:09 +0000 >Subject: [PATCH] Bug 34131: Add 'current' class on correct side menu link > >This changes the way we're looking for the correct menu item to set as active. >If we don't find an exact match for path+params, we attempt to set 'current' to just matching on path. >What this does is it sets the 'Plugins' menu item as active, even if the url is 'plugins-home.pl?method=report >--- > koha-tmpl/intranet-tmpl/prog/js/staff-global.js | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js >index c4890ae20e..4d4bdc97e5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/staff-global.js >@@ -144,7 +144,11 @@ $(document).ready(function() { > if ( url.match(/\?(.+)$/) ) { > params = "?" + RegExp.$1; > } >- $("a[href$=\"/" + path + params + "\"]", navmenulist).addClass("current"); >+ if ($("a[href$=\"/" + path + params + "\"]", navmenulist).length == 0){ >+ $("a[href$=\"/" + path + "\"]", navmenulist).addClass("current"); >+ } else { >+ $("a[href$=\"/" + path + params + "\"]", navmenulist).addClass("current"); >+ } > } > > $("#catalog-search-link a").on("mouseenter mouseleave", function(){ >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 34131
:
152727
|
152728
|
152745
|
152746
|
153150
|
153151
|
153152
|
153164
|
153165
|
153166
|
153167