Bugzilla – Attachment 170091 Details for
Bug 37141
Add option to display completed bookings from patron page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37141: Tidy JS
Bug-37141-Tidy-JS.patch (text/plain), 2.57 KB, created by
Nick Clemens (kidclamp)
on 2024-08-06 11:43:26 UTC
(
hide
)
Description:
Bug 37141: Tidy JS
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2024-08-06 11:43:26 UTC
Size:
2.57 KB
patch
obsolete
>From c10c6e539fa461c6cb7852bb1b7540d7071b33eb Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 6 Aug 2024 11:39:37 +0000 >Subject: [PATCH] Bug 37141: Tidy JS > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > .../intranet-tmpl/prog/js/tables/bookings.js | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js b/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js >index 75bdda54b62..73d105dcf41 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/tables/bookings.js >@@ -3,7 +3,7 @@ > var bookings_table; > $(document).ready(function () { > // Determine whether we have a filtered list >- let filter_expired = $("#expired_filter").hasClass('filtered'); >+ let filter_expired = $("#expired_filter").hasClass("filtered"); > > // Load bookings table on tab selection > $("#bookings-tab").on("click", function () { >@@ -12,15 +12,14 @@ $(document).ready(function () { > end_date: function () { > if (filter_expired) { > let today = new Date(); >- return { ">=": today.toISOString() } >+ return { ">=": today.toISOString() }; > } else { > return; > } >- } >+ }, > }; > > if (!bookings_table) { >- > var bookings_table_url = "/api/v1/bookings"; > bookings_table = $("#bookings_table").kohaTable( > { >@@ -102,7 +101,9 @@ $(document).ready(function () { > }, > ], > }, >- table_settings_bookings_table, 0, additional_filters >+ table_settings_bookings_table, >+ 0, >+ additional_filters > ); > } > }); >@@ -110,7 +111,7 @@ $(document).ready(function () { > var txtActivefilter = _("Show expired"); > var txtInactivefilter = _("Hide expired"); > $("#expired_filter").on("click", function () { >- if ($(this).hasClass('filtered')) { >+ if ($(this).hasClass("filtered")) { > filter_expired = false; > $(this).html('<i class="fa fa-filter"></i> ' + txtInactivefilter); > } else { >@@ -118,7 +119,6 @@ $(document).ready(function () { > $(this).html('<i class="fa fa-bars"></i> ' + txtActivefilter); > } > bookings_table.DataTable().draw(); >- $(this).toggleClass('filtered'); >+ $(this).toggleClass("filtered"); > }); >- > }); >-- >2.39.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 37141
:
167934
|
168420
|
170057
|
170063
|
170064
|
170081
|
170082
|
170083
|
170088
|
170089
|
170090
| 170091