6 lines
139 B
JavaScript
6 lines
139 B
JavaScript
Template.attacksViewList.helpers({
|
|
attacks: function() {
|
|
return Attacks.find({"parent.id": this.parentId, charId: this.charId});
|
|
}
|
|
});
|