Bugzilla – Attachment 50829 Details for
Bug 11565
decreaseLoanHighHolds needs Override
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 11565 [QA Followup] - Only hide options when none are in use
PASSED-QA-Bug-11565-QA-Followup---Only-hide-option.patch (text/plain), 1.44 KB, created by
Katrin Fischer
on 2016-04-27 16:15:31 UTC
(
hide
)
Description:
[PASSED QA] Bug 11565 [QA Followup] - Only hide options when none are in use
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2016-04-27 16:15:31 UTC
Size:
1.44 KB
patch
obsolete
>From e37b891aec091e0db4a431bd3b8f199b49b14132 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 27 Apr 2016 15:39:55 +0000 >Subject: [PATCH] [PASSED QA] Bug 11565 [QA Followup] - Only hide options when > none are in use > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js | 9 +++++++++ > 1 file changed, 9 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js b/koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js >index 92dba4b..3a35fba 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js >+++ b/koha-tmpl/intranet-tmpl/prog/en/js/pages/circulation.js >@@ -49,6 +49,15 @@ $(document).ready(function() { > var checkout_settings = $(".checkout-settings"); > var checkout_settings_icon = $(".checkout-settings-icon"); > >+ // If any checkboxes in the checkout settings are selected, show the settings by default >+ if ( $(".checkout-settings input:checked,#duedatespec[value!='']").length ) { >+ checkout_settings.show(); >+ checkout_settings_icon.removeClass("fa-caret-right").addClass("fa-caret-down"); >+ } else { >+ checkout_settings.hide(); >+ checkout_settings_icon.removeClass("fa-caret-down").addClass("fa-caret-right"); >+ } >+ > $("#show-checkout-settings a").on("click",function(){ > if( checkout_settings.is(":hidden")){ > checkout_settings.show(); >-- >1.9.1
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 11565
:
42976
|
43160
|
43600
|
48679
|
49409
|
49937
|
50798
|
50799
|
50800
|
50815
|
50817
|
50818
|
50820
|
50821
|
50822
|
50828
| 50829