@@ -, +, @@ - to expand more than one field at a time - hide the notice content with another click --- .../prog/en/modules/members/notices.tt | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt @@ -10,10 +10,10 @@ dateFormat: 'uk' [% END %] }); - - $("a.message-title").click(function(e){ - $("p.message").hide(); - $(this).next("p").show(); + + $(".message").hide(); + $(".message-title").click(function(e){ + $(this).next(".message").toggle(); e.preventDefault(); }); --