Skip to content

Commit

Permalink
Update class for site CSS updates
Browse files Browse the repository at this point in the history
  • Loading branch information
trptcolin committed Apr 3, 2019
1 parent 7d4a9ef commit 7d4c189
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/js/src/NameGame.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ NameGame.prototype.addTextInput = function(employeeDiv, count) {

NameGame.prototype.shuffle = function(){
var count = 0;
$(".team_member").map(function(){
$(".team-member").map(function(){
$(this).addClass("wholething" + count);
count++;
});
Expand All @@ -72,7 +72,7 @@ NameGame.prototype.addScoreboard = function() {
NameGame.prototype.replaceNamesWithInputs = function() {
count = 0;
names = [];
$(".team_member > h3").map(function() {
$(".team-member > h3").map(function() {
var employeeName = NameGame.prototype.getName($(this));
names.push(employeeName);
NameGame.prototype.removeName($(this));
Expand Down

0 comments on commit 7d4c189

Please sign in to comment.