11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
Template.undoToast.events({
|
|
'tap #undoButton': function(event, instance){
|
|
var collection = window[this.collection];
|
|
if(!collection){
|
|
console.warn("Collection with name ", this.collection, " could not be found");
|
|
return;
|
|
}
|
|
collection.restore(this.id);
|
|
}
|
|
});
|