From 2d7d9b5d9ffed0349b2cf65acc61561c21d05aaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Mon, 22 Jan 2018 15:31:33 -0300 Subject: Fix lint errors --- client/components/swimlanes/swimlanes.js | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) (limited to 'client/components/swimlanes/swimlanes.js') diff --git a/client/components/swimlanes/swimlanes.js b/client/components/swimlanes/swimlanes.js index 5c2429dd..397f9e9b 100644 --- a/client/components/swimlanes/swimlanes.js +++ b/client/components/swimlanes/swimlanes.js @@ -11,7 +11,7 @@ BlazeComponent.extendComponent({ }, id() { - return this._id; + return this._id; }, // XXX Flow components allow us to avoid creating these two setter methods by @@ -184,7 +184,7 @@ BlazeComponent.extendComponent({ return [{ submit(evt) { evt.preventDefault(); - var titleInput = this.find('.list-name-input'); + let titleInput = this.find('.list-name-input'); if (titleInput) { const title = titleInput.value.trim(); if (title) { @@ -200,7 +200,6 @@ BlazeComponent.extendComponent({ } else { titleInput = this.find('.swimlane-name-input'); const title = titleInput.value.trim(); - console.log(title); if (title) { Swimlanes.insert({ title, @@ -214,27 +213,7 @@ BlazeComponent.extendComponent({ } }, }]; - },/* - 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'); - console.log(titleInput); - } - }, - }]; }, - */ }).register('addListAndSwimlaneForm'); Template.swimlane.helpers({ -- cgit v1.2.3-1-g7c22