From d898cffd4ecebfb303a390d8db2e9f0109a4363a Mon Sep 17 00:00:00 2001 From: Guillaume Lajarige Date: Tue, 31 Jan 2017 13:07:31 +0000 Subject: [PATCH] (Retrofit from trunk) Legacy portal: Since iTop 2.3, plain text caselog entries can no longer be toggled due to a bad jQuery selector. Only HTML entries were working. SVN:2.3[4548] --- application/portalwebpage.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/portalwebpage.class.inc.php b/application/portalwebpage.class.inc.php index 7e134848b..4c7c6c579 100644 --- a/application/portalwebpage.class.inc.php +++ b/application/portalwebpage.class.inc.php @@ -222,7 +222,7 @@ try PrepareWidgets(); //$('.resizable').resizable(); // Make resizable everything that claims to be resizable ! - $('.caselog_header').click( function () { $(this).toggleClass('open').next('.caselog_entry_html').toggle(); }); + $('.caselog_header').click( function () { $(this).toggleClass('open').next('.caselog_entry,.caselog_entry_html').toggle(); }); $(document).ajaxSend(function(event, jqxhr, options) { jqxhr.setRequestHeader('X-Combodo-Ajax', 'true');