mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
![]() |
// Template.cards.events({
|
||
|
// 'click .member': Popup.open('cardMember')
|
||
|
// });
|
||
|
|
||
|
|
||
|
BlazeComponent.extendComponent({
|
||
|
template: function() {
|
||
|
return 'minicard';
|
||
|
},
|
||
|
|
||
|
isSelected: function() {
|
||
|
return Session.equals('currentCard', this.currentData()._id);
|
||
|
}
|
||
|
}).register('minicard');
|