summaryrefslogtreecommitdiffstats
path: root/client/components/boards/boardList.js
diff options
context:
space:
mode:
authorYasar icli <hello@yasaricli.com>2015-07-18 13:33:15 +0300
committerYasar icli <hello@yasaricli.com>2015-07-18 13:33:15 +0300
commit2fb317d753cdf5612d9b90428c223deae683c97b (patch)
treea106f6fb481fca76f91d01be89413f9fe95b1f63 /client/components/boards/boardList.js
parentd7cb933925243d41d25314c34d34a21d8a701a6b (diff)
downloadwekan-2fb317d753cdf5612d9b90428c223deae683c97b.tar.gz
wekan-2fb317d753cdf5612d9b90428c223deae683c97b.tar.bz2
wekan-2fb317d753cdf5612d9b90428c223deae683c97b.zip
if not then the board list create board show button.
Diffstat (limited to 'client/components/boards/boardList.js')
-rw-r--r--client/components/boards/boardList.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/components/boards/boardList.js b/client/components/boards/boardList.js
index 8dc70ee9..9529af69 100644
--- a/client/components/boards/boardList.js
+++ b/client/components/boards/boardList.js
@@ -25,10 +25,11 @@ BlazeComponent.extendComponent({
events: function() {
return [{
+ 'click .js-add-board': Popup.open('createBoard'),
'click .js-star-board': function(evt) {
Meteor.user().toggleBoardStar(this._id);
evt.preventDefault();
- }
+ },
}];
}
}).register('boardList');