Created
February 21, 2014 04:14
-
-
Save GirlBossRush/9128614 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var removedItems = { completed: 0, skipped: 0 }; | |
_.each(MemoryBank.items, function (item) { | |
if (item.memories.completed) { | |
removedItems.completed++; | |
delete MemoryBank.items[item.id]; | |
} | |
if (item.memories.skipped) { | |
removedItems.skipped++; | |
delete MemoryBank.items[item.id]; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment