Bugzilla – Attachment 146583 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-13 14:05:38 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-13 14:05:38 UTC
Size:
1.57 KB
patch
obsolete
>From ea330e10005935e39103eeef492f2985e842e1f0 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Mon, 13 Feb 2023 14:05:03 +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 5904b398db..2ffeaf5062 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 batch >@@ -302,7 +302,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