diff options
author | hupptechnologies <git@hupp.in> | 2018-12-08 18:05:59 +0530 |
---|---|---|
committer | hupptechnologies <git@hupp.in> | 2018-12-08 18:05:59 +0530 |
commit | 5ac69ed7dea94feea5cf58cb4b1df846b3fadd37 (patch) | |
tree | 1ca9103a30cd6d64d87d3804f6b372a843fd2c03 /client/components/cards | |
parent | 0620fe5e111d50384ccca29afe8be5ddd3ee28bf (diff) | |
download | wekan-5ac69ed7dea94feea5cf58cb4b1df846b3fadd37.tar.gz wekan-5ac69ed7dea94feea5cf58cb4b1df846b3fadd37.tar.bz2 wekan-5ac69ed7dea94feea5cf58cb4b1df846b3fadd37.zip |
Fix lineter issue
Diffstat (limited to 'client/components/cards')
-rw-r--r-- | client/components/cards/cardDetails.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index d2825058..e17e7467 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -112,9 +112,7 @@ BlazeComponent.extendComponent({ onRendered() { if (!Utils.isMiniScreen()) { Meteor.setTimeout(() => { - $(".card-details").mCustomScrollbar({ - theme:"minimal-dark", setWidth: false, setLeft: 0, scrollbarPosition: "outside", mouseWheel:true - }); + $('.card-details').mCustomScrollbar({theme:'minimal-dark', setWidth: false, setLeft: 0, scrollbarPosition: 'outside', mouseWheel: true }); this.scrollParentContainer(); }, 500); } |