From 095ec66a0fe446ff18c2a8b5f6e0b5ab70873340 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 16 Jan 2024 12:18:48 +0000 Subject: [PATCH] Bug 35813: (follow-up) Correct dialog class and clean up whitespace This patch changes the class of the success message from "success" (which is a Bootstrap class) to "message" which is the class we use elsewhere in Koha for this kind of informational message. The patch adds the same dialog markup to labeledMARCdetail.tt. The patch also trims trailing whitespace from place_booking_modal.js Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall --- .../en/modules/catalogue/labeledMARCdetail.tt | 2 +- .../intranet-tmpl/prog/js/modals/place_booking.js | 15 ++++++++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt index b88a5a628ae..845d47f6ecb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt @@ -47,7 +47,7 @@ [% IF ( unknownbiblionumber ) %]
The record you requested does not exist ([% biblionumber | html %]).
[% ELSE %] - +
[% INCLUDE 'cat-toolbar.inc' %]

diff --git a/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js b/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js index 9d39f57fd11..4bb8efcfd77 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js +++ b/koha-tmpl/intranet-tmpl/prog/js/modals/place_booking.js @@ -789,7 +789,11 @@ $("#placeBookingForm").on("submit", function (e) { ); // Set feedback - $('#transient_result').replaceWith('
'+_("Booking successfully placed")+'
'); + $("#transient_result").replaceWith( + '
' + + _("Booking successfully placed") + + "
" + ); // Close modal $("#placeBookingModal").modal("hide"); @@ -852,12 +856,13 @@ $("#placeBookingForm").on("submit", function (e) { timeline.focus(data.booking_id); } -<<<<<<< HEAD -======= // Set feedback - $('#transient_result').replaceWith('
'+_("Booking successfully updated")+'
'); + $("#transient_result").replaceWith( + '
' + + _("Booking successfully updated") + + "
" + ); ->>>>>>> 9195757e2f1 (Bug 35813: Add success feedback after placing/editing bookings) // Close modal $("#placeBookingModal").modal("hide"); }); -- 2.30.2