From 3531d5c5b79e70b60318c861cb0eb333ca0f0420 Mon Sep 17 00:00:00 2001 From: Guillaume Lajarige Date: Thu, 6 Jul 2017 15:55:02 +0000 Subject: [PATCH] Removed JS console.log usages that would have made IE9 crash SVN:trunk[4804] --- application/itopwebpage.class.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/itopwebpage.class.inc.php b/application/itopwebpage.class.inc.php index 3e9588c77..2bfbcd81e 100644 --- a/application/itopwebpage.class.inc.php +++ b/application/itopwebpage.class.inc.php @@ -377,7 +377,7 @@ EOF event: 'change', 'show': function(event, ui) { $('.resizable', ui.panel).resizable(); // Make resizable everything that claims to be resizable ! }, - create: function( event, ui ) {console.log(ui); + create: function( event, ui ) { resizeTab(ui.panel); }, beforeLoad: function( event, ui ) { @@ -390,7 +390,7 @@ EOF ui.tab.data( "loaded", true ); }); }, - activate: function( event, ui ) {console.log(ui); + activate: function( event, ui ) { resizeTab(ui.newPanel); } });