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

@@ -3,7 +3,7 @@ Template.spellListDialog.events({
SpellLists.update(instance.data.spellListId, {$set: {color: event.color}});
},
"tap #deleteButton": function(event, instance){
SpellLists.softRemove(instance.data.spellListId);
SpellLists.softRemoveNode(instance.data.spellListId);
GlobalUI.deletedToast(instance.data.spellListId, "SpellLists", "Spell list and contents");
GlobalUI.closeDetail()
},