8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
Template.undoToast.events({
|
|
'tap #undoButton': function(event, instance){
|
|
var collection = window[this.collection];
|
|
if(!collection) return;
|
|
collection.restore(this.id);
|
|
}
|
|
});
|