@@ -, +, @@ form --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt @@ -175,6 +175,7 @@
  • To date: +
    This field only applies when holidays are added on a range.
  • @@ -578,7 +579,7 @@ $(document).ready(function() { - $(".hint").hide(); + $(".helptext + .hint").hide(); $("#branch").change(function(){ changeBranch(); }); @@ -606,7 +607,7 @@ }); $("a.helptext").click(function(){ - $(this).parent().find(".hint").toggle(); return false; + $(this).parent().find(".helptext + .hint").toggle(); return false; }); const dateofrange = document.querySelector("#dateofrange")._flatpickr; --