diff options
author | Lauri Ojansivu <x@xet7.org> | 2016-11-29 03:53:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-29 03:53:48 +0200 |
commit | 56139e33078d2fa137a809801d4631b525dbca49 (patch) | |
tree | c379b4e716e7c01324ae7b55465f4fb28e0c831d | |
parent | fd6c54b2a7573adeaf1733dd076fb6645f4064cf (diff) | |
parent | 6090ede8c98d98ba5d3664169cae4f2696ccd557 (diff) | |
download | wekan-56139e33078d2fa137a809801d4631b525dbca49.tar.gz wekan-56139e33078d2fa137a809801d4631b525dbca49.tar.bz2 wekan-56139e33078d2fa137a809801d4631b525dbca49.zip |
Merge pull request #30 from dwrensha/show-card-comments
set isLoaded to true on both transitionend and animationend
-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 32980926..b7e0ef76 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 [{ |