Replaced softRemove with softRemoveNode

This commit is contained in:
Thaum
2015-04-07 11:29:17 +00:00
parent f1876afc63
commit 7d0993601f
10 changed files with 13 additions and 13 deletions

View File

@@ -38,7 +38,7 @@ Template.spellDialog.events({
Spells.update(instance.data.spellId, {$set: {color: event.color}});
},
"tap #deleteButton": function(event, instance){
Spells.softRemove(instance.data.spellId);
Spells.softRemoveNode(instance.data.spellId);
GlobalUI.deletedToast(instance.data.spellId, "Spells", "Spell");
GlobalUI.closeDetail()
},