set isLoaded to true on both transitionend and animationend

This commit is contained in:
David Renshaw 2016-11-23 20:57:33 -05:00
parent 1ad4107201
commit 6090ede8c9

View file

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