Skip to content

Commit

Permalink
fix typo in showavailablegames
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Sep 19, 2014
1 parent 2609110 commit 34ede41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/scripts/showavailablegames.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ requirejs(
});

var quitGame = function(gameId) {
console.log("sending quitGame: " + gameId);
client.sendCmd('quitGame', {gameId: gameId});
};

Expand Down Expand Up @@ -195,7 +196,7 @@ requirejs(
var launch = function(element, runtimeInfo) {
client.sendCmd('launch', {gameId: runtimeInfo.info.happyFunTimes.gameId});
};
var quit = function(element, runtmeInfo) {
var quit = function(element, runtimeInfo) {
quitGame(runtimeInfo.info.happyFunTimes.gameId);
};

Expand Down

0 comments on commit 34ede41

Please sign in to comment.