mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
remove console.log statements
This commit is contained in:
parent
257ed56db3
commit
c5019e620a
1 changed files with 1 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue