diff options
author | Erik Turk <erik.turk@ontera.ca> | 2018-02-08 08:14:33 -0500 |
---|---|---|
committer | Erik Turk <erik.turk@ontera.ca> | 2018-02-08 08:14:33 -0500 |
commit | c5019e620a5371b73affd9d635ceef9d183d6b45 (patch) | |
tree | 0b730aa0600bea6ca12a12961b98418b98821e6b /client/components | |
parent | 257ed56db3eefda225a1d2a20ce60458393a4cce (diff) | |
download | wekan-c5019e620a5371b73affd9d635ceef9d183d6b45.tar.gz wekan-c5019e620a5371b73affd9d635ceef9d183d6b45.tar.bz2 wekan-c5019e620a5371b73affd9d635ceef9d183d6b45.zip |
remove console.log statements
Diffstat (limited to 'client/components')
-rw-r--r-- | client/components/cards/cardDetails.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index e75e7c02..a487022e 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -312,18 +312,12 @@ Template.copyManyCardPopup.events({ card.sort = Lists.findOne(this._id).cards().count(); if (titleEntry) { - var title, titleList; - console.log(titleEntry); - console.log(titleEntry.length); + var titleList; var titleList = JSON.parse(titleEntry); - console.log(titleList); - console.log(titleList[0]); - console.log(titleList[0].title); for (var i = 0; i < titleList.length; i++){ var obj = titleList[i]; - console.log(obj.title); card.title = obj.title; card.description = obj.description; |