diff options
author | Erik Turk <erik.turk@ontera.ca> | 2018-02-05 11:02:01 -0500 |
---|---|---|
committer | Erik Turk <erik.turk@ontera.ca> | 2018-02-05 11:02:01 -0500 |
commit | 3c1cd85f6f961ec19832901a059b072b44d89dc4 (patch) | |
tree | 633a60016ec76e6214ae5a9ac1149aba04af7322 /client/components/cards | |
parent | bb9d5cb69466a78ecbcd832f596602f028ab644c (diff) | |
download | wekan-3c1cd85f6f961ec19832901a059b072b44d89dc4.tar.gz wekan-3c1cd85f6f961ec19832901a059b072b44d89dc4.tar.bz2 wekan-3c1cd85f6f961ec19832901a059b072b44d89dc4.zip |
added copyManyCard
Diffstat (limited to 'client/components/cards')
-rw-r--r-- | client/components/cards/cardDetails.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 94a938f0..3ae6327b 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -170,6 +170,7 @@ Template.cardDetailsActionsPopup.events({ 'click .js-spent-time': Popup.open('editCardSpentTime'), 'click .js-move-card': Popup.open('moveCard'), 'click .js-copy-card': Popup.open('copyCard'), + 'click .js-copy-many-card': Popup.open('copyManyCard'), 'click .js-move-card-to-top' (evt) { evt.preventDefault(); const minOrder = _.min(this.list().cards().map((c) => c.sort)); |