Fix some IDE warnings.

This commit is contained in:
Patrick Fairbank
2018-09-03 12:51:52 -07:00
parent 27c38f7393
commit 9019425a2c
16 changed files with 53 additions and 54 deletions

View File

@@ -49,7 +49,7 @@ var handleKeyPress = function(event) {
// Handles a websocket message to update the match status.
var handleMatchTime = function(data) {
if (matchStates[data.MatchState] == "POST_MATCH" && !scoreCommitted) {
if (matchStates[data.MatchState] === "POST_MATCH" && !scoreCommitted) {
$("#commitMatchScore").show();
} else {
$("#commitMatchScore").hide();