6 lines
161 B
JavaScript
6 lines
161 B
JavaScript
Template.effectsViewList.helpers({
|
|
effects: function(){
|
|
return Effects.find({"parent.id": this.parentId, charId: this.charId}, {fields: {parent: 0}});
|
|
}
|
|
});
|