summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardDetails.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/cards/cardDetails.js')
-rw-r--r--client/components/cards/cardDetails.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js
index ea1363b5..bfe9f755 100644
--- a/client/components/cards/cardDetails.js
+++ b/client/components/cards/cardDetails.js
@@ -141,6 +141,19 @@ Template.cardDetailsActionsPopup.events({
'click .js-more': Popup.open('cardMore'),
});
+Template.editCardTitleForm.onRendered(function() {
+ autosize(this.$('.js-edit-card-title'));
+});
+
+Template.editCardTitleForm.events({
+ 'keydown .js-edit-card-title'(evt) {
+ // If enter key was pressed, submit the data
+ if (evt.keyCode === 13) {
+ $('.js-submit-edit-card-title-form').click();
+ }
+ },
+});
+
Template.moveCardPopup.events({
'click .js-select-list'() {
// XXX We should *not* get the currentCard from the global state, but