summaryrefslogtreecommitdiffstats
path: root/client/components/cards
diff options
context:
space:
mode:
authorMaxime Quandalle <mquandalle@wekan.io>2016-07-19 17:17:51 +0200
committerMaxime Quandalle <mquandalle@wekan.io>2016-07-19 17:17:51 +0200
commitbda1df5ada4cc086e4e05748f8019afbb24e0117 (patch)
treeac38e5c55665660067ea0f7fab64a20d225d28b5 /client/components/cards
parentb96a60c9bbaa8bf20ca2b00872e7639058e6aaa5 (diff)
downloadwekan-bda1df5ada4cc086e4e05748f8019afbb24e0117.tar.gz
wekan-bda1df5ada4cc086e4e05748f8019afbb24e0117.tar.bz2
wekan-bda1df5ada4cc086e4e05748f8019afbb24e0117.zip
Fix an event name from animationend to transitionend
Closes #646
Diffstat (limited to 'client/components/cards')
-rw-r--r--client/components/cards/cardDetails.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js
index 5dd0b762..b6f17c23 100644
--- a/client/components/cards/cardDetails.js
+++ b/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);
},
};