From 3ed01cde517958da505e42ada36d004c77fd1f53 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 10 Jul 2014 08:34:01 +0000 Subject: [PATCH] Fixed regression introduced by "Provide feedback while loading asynchronous tabs.", provide feeback ONLY when loading! SVN:trunk[3258] --- application/itopwebpage.class.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application/itopwebpage.class.inc.php b/application/itopwebpage.class.inc.php index 51dddd8ac9..707d366e06 100644 --- a/application/itopwebpage.class.inc.php +++ b/application/itopwebpage.class.inc.php @@ -216,12 +216,11 @@ EOF; $('.resizable', ui.panel).resizable(); // Make resizable everything that claims to be resizable ! }, beforeLoad: function( event, ui ) { - ui.panel.html('
'); if ( ui.tab.data('loaded') && (ui.tab.attr('data-cache') == 'true')) { event.preventDefault(); return; } - + ui.panel.html('
'); ui.jqXHR.success(function() { ui.tab.data( "loaded", true ); });