From f8894b47a99b10e56b6c279d70e0daa33512469d Mon Sep 17 00:00:00 2001 From: aFolletete Date: Thu, 26 Apr 2012 15:09:22 +0000 Subject: [PATCH] [-] FO : fixed bug #PSCFI-5502 - Incorrect resizing of addresses on the order history page git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14918 b9a71923-0436-4b27-9f14-aed3839534dd --- themes/default/js/history.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/themes/default/js/history.js b/themes/default/js/history.js index 4329950be..393d072e5 100644 --- a/themes/default/js/history.js +++ b/themes/default/js/history.js @@ -74,9 +74,10 @@ function showOrder(mode, var_content, file) $('form#sendOrderMessage').submit(function(){ return sendOrderMessage(); }); - $(this).fadeIn('slow'); - $.scrollTo(this, 1200); - resizeAddressesBox(); + $(this).fadeIn('slow', function() { + $.scrollTo(this, 1200); + resizeAddressesBox(); + }); }); }); }