Created
February 7, 2016 16:27
-
-
Save asethwright/e67c178bf3802cf1e4cd to your computer and use it in GitHub Desktop.
Example for Brittany
This file contains 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
// 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