From de26670086b8b6c1529e5a21aa57d473d9abd783 Mon Sep 17 00:00:00 2001 From: Jonathan Druart <jonathan.druart@biblibre.com> Date: Wed, 18 Dec 2013 10:08:50 +0100 Subject: [PATCH] Bug 11413: Reflect the changes to the interface Test plan: - add/edit an action on the marc modification templates tools - choose an action and define a condition - define the source field as same as the condition field - verify the All/1st dropdown list is changed to Every/1st --- .../prog/en/modules/tools/marc_modification_templates.tt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt index 50deb37..ed578de 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt @@ -35,18 +35,21 @@ $(document).ready(function() { return false; } }); + + $("#conditional_field,#from_field").change(function(){ + updateAllEvery(); + }); }); //]]> </script> <script> - -function updateWarnings(){ +function updateAllEvery(){ if ( $("#conditional_field").is(":visible") ) { if ( $("#conditional_field").val() == $("#from_field").val() && $("#from_field").val().length > 0 ) { - $("#warning_multivalued").show(); + $("#field_number option[value='0']").html(_("Every")); } else { - $("#warning_multivalued").hide(); + $("#field_number option[value='0']").html(_("All")); } } } -- 1.7.10.4