diff --git a/assets/js/pages/booking.js b/assets/js/pages/booking.js index 38ba81b0..7ccd9e80 100644 --- a/assets/js/pages/booking.js +++ b/assets/js/pages/booking.js @@ -316,10 +316,10 @@ App.Pages.Booking = (function () { $target .parents() .eq(1) - .hide('fade', () => { + .fadeOut(() => { $('.active-step').removeClass('active-step'); $('#step-' + nextTabIndex).addClass('active-step'); - $('#wizard-frame-' + nextTabIndex).show('fade'); + $('#wizard-frame-' + nextTabIndex).fadeIn(); }); }); @@ -335,10 +335,10 @@ App.Pages.Booking = (function () { $(event.currentTarget) .parents() .eq(1) - .hide('fade', () => { + .fadeOut(() => { $('.active-step').removeClass('active-step'); $('#step-' + prevTabIndex).addClass('active-step'); - $('#wizard-frame-' + prevTabIndex).show('fade'); + $('#wizard-frame-' + prevTabIndex).fadeIn(); }); });