summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-12-20 14:15:38 +0200
committerLauri Ojansivu <x@xet7.org>2017-12-20 14:15:38 +0200
commit9e3e63f4940ce58d986c5b473025d04582d36d71 (patch)
treed53c3d3ccf260983746a96f138ffc0eb437d4259
parent0c15048bdd1da5928525585b1d24c5dbe8a68bbc (diff)
parentba2d9b89dc4460a2f6d6abb530b9ba74b107d4e1 (diff)
downloadwekan-9e3e63f4940ce58d986c5b473025d04582d36d71.tar.gz
wekan-9e3e63f4940ce58d986c5b473025d04582d36d71.tar.bz2
wekan-9e3e63f4940ce58d986c5b473025d04582d36d71.zip
Merge branch 'thuanpq-auto-setting-card-cover-with-drag-drop' into devel
-rw-r--r--CHANGELOG.md5
-rw-r--r--client/components/cards/attachments.js7
2 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58da6d0c..5730a3ec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,10 @@
This release adds the following new features:
-* Update to Node 4.8.7
+* [Auto update card cover with new image uploaded via drag&drop](https://github.com/wekan/wekan/pull/1401);
+* Update to Node 4.8.7.
-Thanks to GitHub user xet7 for contributions.
+Thanks to GitHub users thuanpq and xet7 for their contributions.
# v0.62 2017-12-12 Wekan release
diff --git a/client/components/cards/attachments.js b/client/components/cards/attachments.js
index b1f88bf1..bc7d3979 100644
--- a/client/components/cards/attachments.js
+++ b/client/components/cards/attachments.js
@@ -113,7 +113,12 @@ Template.previewClipboardImagePopup.events({
file.boardId = card.boardId;
file.cardId = card._id;
file.userId = Meteor.userId();
- Attachments.insert(file);
+ const attachment = Attachments.insert(file);
+
+ if (attachment && attachment._id && attachment.isImage()) {
+ card.setCover(attachment._id);
+ }
+
pastedResults = null;
$(document.body).pasteImageReader(() => {});
Popup.close();