From 7078d8191323bfe461aa5d27a704aefbfb64a935 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 28 Jul 2016 14:33:16 -0400 Subject: [PATCH] [PASSED QA] Bug 16995 - Remove event attributes from two include files This patch removes event attributes from two include files: cat-toolbar.inc and members-toolbar.inc. In cat-toolbar.inc an unused
tag with an "onsubmit" attribute has been removed. To test, apply the patch and: - View the detail page for any bibliographic record. All toolbar buttons ("New," "Edit," "Save," etc.) should work as expected. - View the detail page for any patron. Click the "Add message" button in the toolbar. Selecting a predefined note should correctly populate the textarea with your selected message. Signed-off-by: Claire Gravely Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 3 --- koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 9 ++++++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc index 68aeefa..b809c4e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -127,8 +127,6 @@
- - [% IF ( CAN_user_editcatalogue_edit_catalogue || CAN_user_editcatalogue_edit_items || CAN_user_serials_create_subscription ) %]
@@ -263,7 +261,6 @@ CAN_user_serials_create_subscription ) %] [% END %] [% END %] -
diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc index 7f7fe5c..242608e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -69,7 +69,10 @@ $(document).ready(function(){ $("#searchtohold").click(function(){ searchToHold(); return false; - }) + }); + $("#select_patron_messages").on("change",function(){ + $("#borrower_message").val( $(this).val() ); + }); }); function confirm_deletion() { var is_confirmed = window.confirm(_("Are you sure you want to delete this patron? This cannot be undone.")); @@ -234,8 +237,8 @@ function searchToHold(){ [% bor_notes = AuthorisedValues.Get( 'BOR_NOTES' ) %] [% IF bor_notes %]
  • - - [% FOREACH bor_note IN bor_notes %] -- 1.9.1