Files
DiceCloud/rpg-docs/client/views/paperTemplates/undoToast/undoToast.js

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);
}
});