diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-03-31 20:29:17 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-03-31 20:29:17 +0300 |
commit | 38a8d827355cc3355270ab138cf7bef19b1e8597 (patch) | |
tree | 2615708d081bb1ee198762e0cba314c955cb6a27 /client/components/swimlanes/swimlanes.js | |
parent | 42a4ca3678b228917ac176d2936e5dca2ea5b573 (diff) | |
download | wekan-38a8d827355cc3355270ab138cf7bef19b1e8597.tar.gz wekan-38a8d827355cc3355270ab138cf7bef19b1e8597.tar.bz2 wekan-38a8d827355cc3355270ab138cf7bef19b1e8597.zip |
Fix lint errors.
Diffstat (limited to 'client/components/swimlanes/swimlanes.js')
-rw-r--r-- | client/components/swimlanes/swimlanes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/swimlanes/swimlanes.js b/client/components/swimlanes/swimlanes.js index 4f6bcf76..f37e1e9c 100644 --- a/client/components/swimlanes/swimlanes.js +++ b/client/components/swimlanes/swimlanes.js @@ -10,7 +10,7 @@ function currentCardIsInThisList(listId, swimlaneId) { return currentCard && currentCard.listId === listId && currentCard.swimlaneId === swimlaneId; else return false; -}; +} function initSortable(boardComponent, $listsDom) { // We want to animate the card details window closing. We rely on CSS @@ -78,7 +78,7 @@ function initSortable(boardComponent, $listsDom) { MultiSelection.isActive() || !userIsMember()); } }); -}; +} BlazeComponent.extendComponent({ onRendered() { |