set isLoaded to true on both transitionend and animationend

pull/768/head
David Renshaw 9 years ago
parent 1ad4107201
commit 6090ede8c9
  1. 3
      client/components/cards/cardDetails.js

@ -65,6 +65,9 @@ BlazeComponent.extendComponent({
[`${CSSEvents.transitionend} .js-card-details`]() {
this.isLoaded.set(true);
},
[`${CSSEvents.animationend} .js-card-details`]() {
this.isLoaded.set(true);
},
};
return [{

Loading…
Cancel
Save