9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
Template.customBuffView.events({
|
|
"click .apply-buff-button": function(){
|
|
pushDialogStack({
|
|
template: "applyBuffDialog",
|
|
data: {buff: this.buff},
|
|
element: event.currentTarget,
|
|
});
|
|
},
|
|
}); |