Skip to content

Instantly share code, notes, and snippets.

@asethwright
Created February 7, 2016 16:27
Show Gist options
  • Save asethwright/e67c178bf3802cf1e4cd to your computer and use it in GitHub Desktop.
Save asethwright/e67c178bf3802cf1e4cd to your computer and use it in GitHub Desktop.
Example for Brittany
// Show and hide functions
this.moreInfo = function(playerLastName){
//toggles player details
this.showPlayerDetails = !this.showPlayerDetails;
this.playerLast = playerLastName;
console.log(playerLastName);
for (var i = 0; i < this.players.length; i++) {
// console.log(i);
if (playerLastName == this.players[i].last) {
this.currentPlayer = this.players[i];
//do stuff
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment