mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Replace the jQuery UI 'fade' easing with the jQuery fadeIn and fadeOut methods
This commit is contained in:
parent
1ae06fcf0a
commit
7b6565fe32
1 changed files with 4 additions and 4 deletions
|
@ -316,10 +316,10 @@ App.Pages.Booking = (function () {
|
||||||
$target
|
$target
|
||||||
.parents()
|
.parents()
|
||||||
.eq(1)
|
.eq(1)
|
||||||
.hide('fade', () => {
|
.fadeOut(() => {
|
||||||
$('.active-step').removeClass('active-step');
|
$('.active-step').removeClass('active-step');
|
||||||
$('#step-' + nextTabIndex).addClass('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)
|
$(event.currentTarget)
|
||||||
.parents()
|
.parents()
|
||||||
.eq(1)
|
.eq(1)
|
||||||
.hide('fade', () => {
|
.fadeOut(() => {
|
||||||
$('.active-step').removeClass('active-step');
|
$('.active-step').removeClass('active-step');
|
||||||
$('#step-' + prevTabIndex).addClass('active-step');
|
$('#step-' + prevTabIndex).addClass('active-step');
|
||||||
$('#wizard-frame-' + prevTabIndex).show('fade');
|
$('#wizard-frame-' + prevTabIndex).fadeIn();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue