Fix an event name from animationend to transitionend

Closes #646
This commit is contained in:
Maxime Quandalle 2016-07-19 17:17:51 +02:00
parent b96a60c9bb
commit bda1df5ada
No known key found for this signature in database
GPG key ID: 428641C03D29CA10

View file

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