Files
DiceCloud/rpg-docs/client/views/paperTemplates/undoToast/undoToast.js
2015-04-22 12:44:25 +02:00

15 lines
295 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.restoreNode(this.id);
}
});