summaryrefslogtreecommitdiffstats
path: root/client/components/swimlanes/swimlanes.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-01-25 22:20:00 +0200
committerLauri Ojansivu <x@xet7.org>2019-01-25 22:20:00 +0200
commit95c178cee32d0c5a782ba0f39d717c1446eee22d (patch)
tree0e623b7087de42140cd12aeceb32a5ba85425649 /client/components/swimlanes/swimlanes.js
parent46a468b06dd5d4ca2338140bb2fd32958ccef85f (diff)
parentbe8f00ab8af080790758362d43c9efea2ed1b2eb (diff)
downloadwekan-95c178cee32d0c5a782ba0f39d717c1446eee22d.tar.gz
wekan-95c178cee32d0c5a782ba0f39d717c1446eee22d.tar.bz2
wekan-95c178cee32d0c5a782ba0f39d717c1446eee22d.zip
Merge branch 'edge' into meteor-1.8
Diffstat (limited to 'client/components/swimlanes/swimlanes.js')
-rw-r--r--client/components/swimlanes/swimlanes.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/client/components/swimlanes/swimlanes.js b/client/components/swimlanes/swimlanes.js
index 865895a9..71317714 100644
--- a/client/components/swimlanes/swimlanes.js
+++ b/client/components/swimlanes/swimlanes.js
@@ -175,48 +175,6 @@ BlazeComponent.extendComponent({
},
}).register('addListForm');
-BlazeComponent.extendComponent({
- // Proxy
- open() {
- this.childComponents('inlinedForm')[0].open();
- },
-
- events() {
- return [{
- submit(evt) {
- evt.preventDefault();
- let titleInput = this.find('.list-name-input');
- if (titleInput) {
- const title = titleInput.value.trim();
- if (title) {
- Lists.insert({
- title,
- boardId: Session.get('currentBoard'),
- sort: $('.list').length,
- });
-
- titleInput.value = '';
- titleInput.focus();
- }
- } else {
- titleInput = this.find('.swimlane-name-input');
- const title = titleInput.value.trim();
- if (title) {
- Swimlanes.insert({
- title,
- boardId: Session.get('currentBoard'),
- sort: $('.swimlane').length,
- });
-
- titleInput.value = '';
- titleInput.focus();
- }
- }
- },
- }];
- },
-}).register('addListAndSwimlaneForm');
-
Template.swimlane.helpers({
canSeeAddList() {
return Meteor.user() && Meteor.user().isBoardMember() && !Meteor.user().isCommentOnly();