From 484f0a308d16404c4a04b5b78d47e7101fc99cc8 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 --- 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(); + }); }); }); }