Bugzilla – Attachment 50818 Details for
Bug 11565
decreaseLoanHighHolds needs Override
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11565 [QA Followup] - Only hide options when none are in use
Bug-11565-QA-Followup---Only-hide-options-when-non.patch (text/plain), 1.34 KB, created by
Kyle M Hall (khall)
on 2016-04-27 15:17:40 UTC
(
hide
)
Description:
Bug 11565 [QA Followup] - Only hide options when none are in use
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-04-27 15:17:40 UTC
Size:
1.34 KB
patch
obsolete
>From ba5d3bd25aa3ab4b85e3455413ca83add9751e88 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 27 Apr 2016 15:13:27 +0000 >Subject: [PATCH] Bug 11565 [QA Followup] - Only hide options when none are in > use > >--- > 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..8e2adf4 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").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(); >-- >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 11565
:
42976
|
43160
|
43600
|
48679
|
49409
|
49937
|
50798
|
50799
|
50800
|
50815
|
50817
|
50818
|
50820
|
50821
|
50822
|
50828
|
50829