소스 검색

Fix an event name from animationend to transitionend

Closes #646
Maxime Quandalle 9 년 전
부모
커밋
bda1df5ada
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      client/components/cards/cardDetails.js

+ 1 - 1
client/components/cards/cardDetails.js

@@ -62,7 +62,7 @@ BlazeComponent.extendComponent({
 
   events() {
     const events = {
-      [`${CSSEvents.animationend} .js-card-details`]() {
+      [`${CSSEvents.transitionend} .js-card-details`]() {
         this.isLoaded.set(true);
       },
     };