Snapcat fix

This commit is contained in:
Max Lynch
2015-06-19 15:44:21 -05:00
parent f1a61cb4d5
commit 407006aa99
4 changed files with 38 additions and 47 deletions

View File

@@ -40,7 +40,6 @@ class ModalSlideIn extends ModalAnimation {
constructor(element) {
super(element);
this
.fadeIn()
.fromTo('translateY', '100%', '0%');
}
}
@@ -50,7 +49,6 @@ class ModalSlideOut extends ModalAnimation {
constructor(element) {
super(element);
this
.fadeOut()
.fromTo('translateY', '0%', '100%');
}
}