Skip to content

Instantly share code, notes, and snippets.

@artcommacode
Created July 8, 2014 21:02
Show Gist options
  • Save artcommacode/95245dba6d95a1baf28c to your computer and use it in GitHub Desktop.
Save artcommacode/95245dba6d95a1baf28c to your computer and use it in GitHub Desktop.
getActionByName : function(name, callback) {
//need to wait for data here
this.find(function(actionModel) {
console.log("Trying to get an action name");
callback(null, actionModel.getName().toLowerCase() === name.toLowerCase());
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment