Procházet zdrojové kódy

Fix an event name from animationend to transitionend

Closes #646
Maxime Quandalle před 9 roky
rodič
revize
bda1df5ada
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);
       },
     };