File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "tabWidth": 2,
3+ "semi": false,
4+ "singleQuote": true
5+ }
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ const animateGridIn = gridContainer =>
3434 easing,
3535 opacity : createOpacityAnimationConfig ( true ) ,
3636 translateY : [ - 30 , 0 ] ,
37- complete : ( ) => triggerAnimationDoneEvent ( gridContainer ) ,
3837 delay : anime . stagger ( 70 )
3938 } ,
4039 '-=500'
@@ -66,7 +65,6 @@ const animateCardIn = card =>
6665 targets : card ,
6766 opacity : createOpacityAnimationConfig ( true ) ,
6867 translateY : [ 50 , 0 ] ,
69- complete : ( ) => triggerAnimationDoneEvent ( card ) ,
7068 easing
7169 } )
7270
@@ -75,7 +73,6 @@ const animateCardOut = card =>
7573 targets : card ,
7674 translateY : - 10 ,
7775 opacity : createOpacityAnimationConfig ( false ) ,
78- complete : ( ) => triggerAnimationDoneEvent ( card ) ,
7976 easing
8077 } )
8178
You can’t perform that action at this time.
0 commit comments