Files
DiceCloud/rpg-docs/client/views/character/effects/effectsViewList/effectsViewList.js
2015-03-06 11:03:09 +00:00

11 lines
292 B
JavaScript

Template.effectsViewList.helpers({
effects: function(){
if(this.sourceId){
return Effects.find({sourceId: this.sourceId, type: this.type, charId: this.charId}, {fields: {sourceId: 0}});
} else if(this.stat){
return Effects.find({charId: this.charId, stat: this.stat});
}
}
});