diff options
author | David Renshaw <david@sandstorm.io> | 2016-11-23 20:57:33 -0500 |
---|---|---|
committer | David Renshaw <david@sandstorm.io> | 2016-11-23 21:00:18 -0500 |
commit | 6090ede8c98d98ba5d3664169cae4f2696ccd557 (patch) | |
tree | bd2bd1d4b614feb1a2605df42d59f832ae659559 /client/components/cards/cardDetails.js | |
parent | 1ad41072010fb59fdbace80a0aa049634074dac1 (diff) | |
download | wekan-6090ede8c98d98ba5d3664169cae4f2696ccd557.tar.gz wekan-6090ede8c98d98ba5d3664169cae4f2696ccd557.tar.bz2 wekan-6090ede8c98d98ba5d3664169cae4f2696ccd557.zip |
set isLoaded to true on both transitionend and animationend
Diffstat (limited to 'client/components/cards/cardDetails.js')
-rw-r--r-- | client/components/cards/cardDetails.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index b6f17c23..303f1632 100644 --- a/client/components/cards/cardDetails.js +++ b/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 [{ |