mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 08:50:13 +01: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');
|