浏览代码

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);
       },
     };