Skip to content

Commit

Permalink
Missing semicolon on function literal
Browse files Browse the repository at this point in the history
  • Loading branch information
celeritas17 committed Jan 27, 2014
1 parent af9d938 commit 8916d91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/snacMan.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ $(function(){
bad_cell = cell_id;
$('#' + bad_cell + "bad").toggle();
}
}
};

var move_left = function(id, cell_id){
var current_cell = parseInt(cell_id);
Expand Down
2 changes: 1 addition & 1 deletion static/js/snacMan.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ $(function(){
bad_cell = cell_id;
$('#' + bad_cell + "bad").toggle();
}
}
};

var move_left = function(id, cell_id){
var current_cell = parseInt(cell_id);
Expand Down

0 comments on commit 8916d91

Please sign in to comment.