Bugzilla – Attachment 147117 Details for
Bug 31705
Option for ILL "Manage request" button to appear on left of the screen to improve accessibility
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31705: Option for ILL "Manage request" button to appear on left of the screen to improve accessibility
Bug-31705-Option-for-ILL-Manage-request-button-to-.patch (text/plain), 1.57 KB, created by
Pedro Amorim
on 2023-02-22 10:27:50 UTC
(
hide
)
Description:
Bug 31705: Option for ILL "Manage request" button to appear on left of the screen to improve accessibility
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2023-02-22 10:27:50 UTC
Size:
1.57 KB
patch
obsolete
>From 6a1ff49b71b03df2bde212fa138a4e90165c5eec Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Wed, 22 Feb 2023 10:27:19 +0000 >Subject: [PATCH] Bug 31705: Option for ILL "Manage request" button to appear > on left of the screen to improve accessibility > >This patch adds a link to the illview details page to the content in the ID column, making it accessible at the beginning of the row instead of having to scroll horizontally to find the "Manage request" button if all columns are being displayed. >--- > koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js >index d6e92cc517..09ad54767a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js >@@ -218,7 +218,7 @@ $(document).ready(function() { > > // Render function for request ID > var createRequestId = function(data, type, row) { >- return row.id_prefix + row.illrequest_id; >+ return '<a href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=' + row.illrequest_id + '">' + row.id_prefix + row.illrequest_id + '</a>'; > }; > > // Render function for type >@@ -292,7 +292,8 @@ $(document).ready(function() { > skipSanitize: true > }, > illrequest_id: { >- func: createRequestId >+ func: createRequestId, >+ skipSanitize: true > }, > status: { > func: createStatus >-- >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 31705
:
146583
| 147117