mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
Platform.ready() for excellence
This commit is contained in:
@ -121,8 +121,7 @@ class FadeIn extends Animation {
|
||||
this
|
||||
.easing('ease')
|
||||
.duration(250)
|
||||
.fadeIn()
|
||||
.before.addClass('show-modal');
|
||||
.fadeIn();
|
||||
}
|
||||
}
|
||||
|
||||
@ -134,8 +133,7 @@ class FadeOut extends Animation {
|
||||
this
|
||||
.easing('ease')
|
||||
.duration(250)
|
||||
.fadeOut()
|
||||
.after.removeClass('show-modal');
|
||||
.fadeOut();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user