Bugzilla – Attachment 63213 Details for
Bug 17812
Return focus to barcode field after toggling on-site checkouts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17812 - Return focus to barcode field after toggling on-site checkouts
Bug-17812---Return-focus-to-barcode-field-after-to.patch (text/plain), 4.12 KB, created by
Nick Clemens (kidclamp)
on 2017-05-05 20:42:24 UTC
(
hide
)
Description:
Bug 17812 - Return focus to barcode field after toggling on-site checkouts
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2017-05-05 20:42:24 UTC
Size:
4.12 KB
patch
obsolete
>From f2367c22a1b5dd27280f11709d1530ca3e132b94 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 3 Jan 2017 15:08:32 +0000 >Subject: [PATCH] Bug 17812 - Return focus to barcode field after toggling > on-site checkouts >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >This patch changes the behavior of the checkout form so that after >checking boxes in the "checkout settings" panel the cursor focus is >automatically moved to the barcode field. > >To test, apply the patch and enable OnSiteCheckouts and >decreaseLoanHighHolds system preferences. > >- Open any patron account in circulation. >- Expand the "Checkout settings" panel. >- Click the label or checkbox for "Automatic renewal", "Don't > decrease checkout length based on holds" and "On-site checkout" >- Confirm that the focus has moved to the barcode field. > >Works as advertised. >Signed-off-by: Marc Véron <veron@veron.ch> > >Signed-off-by: Marjorie Barry-Vila <marjorie.barry-vila@ccsr.qc.ca> > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 8 ++++---- > koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js | 4 ++++ > 2 files changed, 8 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index e133b95..d474196 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -643,7 +643,7 @@ No patron matched <span class="ex">[% message | html %]</span> > [% IF NEEDSCONFIRMATION %] > <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" /> > [% ELSE %] >- <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" /> >+ <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" class="circ_setting" /> > [% END %] > > <label for="auto_renew">Automatic renewal</label> >@@ -658,9 +658,9 @@ No patron matched <span class="ex">[% message | html %]</span> > [% END %] > [% ELSE %] > [% IF override_high_holds %] >- <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" checked="checked" /> >+ <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" checked="checked" /> > [% ELSE %] >- <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" /> >+ <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" /> > [% END %] > [% END %] > <label for="override_high_holds">Don't decrease checkout length based on holds</label> >@@ -677,7 +677,7 @@ No patron matched <span class="ex">[% message | html %]</span> > <input type="hidden" name="onsite_checkout" checked="checked" value="1" /> > </div> > [% ELSE %] >- <input type="checkbox" id="onsite_checkout" name="onsite_checkout" /> <label for="onsite_checkout">On-site checkout</label> >+ <input type="checkbox" id="onsite_checkout" name="onsite_checkout" class="circ_setting" /> <label for="onsite_checkout">On-site checkout</label> > [% END %] > </div> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js b/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js >index 4683b5d..cbe274b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js >@@ -77,6 +77,10 @@ $(document).ready(function() { > } > }); > >+ $(".circ_setting").on("click",function(){ >+ $("#barcode").focus(); >+ }); >+ > }); > > function export_checkouts(format) { >-- >2.1.4
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 17812
:
58566
|
58651
|
63038
|
63136
|
63145
| 63213