@@ -, +, @@ dialog - Submit a barcode for checkout which will trigger a confirmation dialog. For instance: - A barcode they already have checked out - A barcode which is checked out to another patron - When the page reloads you should see an alert-style dialog, "Please confirm checkout." The browser should show a focus outline around the dialog. - Hitting the tab key should move the focus to the first focusable element inside the dialog. If there is a link in the text, this may be the first element. If not the confirmation button should be the next tabbable element. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -80,7 +80,7 @@ [% END %] [% IF ( NEEDSCONFIRMATION ) %] -
+
[% IF CAN_user_circulate_force_checkout or ADDITIONAL_MATERIALS %]

Please confirm checkout

[% ELSE %] @@ -313,7 +313,7 @@ [% END # /NEEDSCONFIRMATION %] [% IF ( IMPOSSIBLE ) %] -
+
[% IF ( UNKNOWN_BARCODE ) %]

Barcode not found

[% END %] --