From 48cb402874dacff6980813bf85d112e8a82de2e7 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Tue, 4 Oct 2011 10:57:09 +0000 Subject: [PATCH] Fixed Trac #487: resizable textareas remained invisible when located on the second tab (Merged from 1.2 branch) SVN:trunk[1629] --- application/itopwebpage.class.inc.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/application/itopwebpage.class.inc.php b/application/itopwebpage.class.inc.php index 4239eaf27..3683ff3ba 100644 --- a/application/itopwebpage.class.inc.php +++ b/application/itopwebpage.class.inc.php @@ -146,7 +146,12 @@ class iTopWebPage extends NiceWebPage // that the tabs aren't changed on click, and any custom event name can be // specified. Note that if you define a callback for the 'select' event, it // will be executed for the selected tab whenever the hash changes. - tabs.tabs({ event: 'change'}); + tabs.tabs({ event: 'change', 'show': function(event, ui) { + $('.resizable', ui.panel).resizable(); // Make resizable everything that claims to be resizable ! + } + }); + + $('.resizable').filter(':visible').resizable(); } catch(err) { @@ -198,7 +203,6 @@ EOF } }); - $('.resizable').resizable(); // Make resizable everything that claims to be resizable ! // Adjust initial size $('.v-resizable').each( function() {