fixed pairing cancel button

this closes #27
This commit is contained in:
R. Aidan Campbell
2016-04-03 09:21:40 -04:00
parent 08554e9c57
commit 659d8cc795
2 changed files with 5 additions and 5 deletions

View File

@@ -15,8 +15,8 @@ function attachListeners() {
$('#showAppsButton').on('click', showAppsPushed);
$('#selectGame').on('change', gameSelectUpdated);
$('#startGameButton').on('click', startSelectedGame);
$('#CancelReplaceApp').on('click', cancelReplaceApp);
$('#ContinueReplaceApp').on('click', continueReplaceApp);
$('#cancelReplaceApp').on('click', cancelReplaceApp);
$('#continueReplaceApp').on('click', continueReplaceApp);
$('#quitGameButton').on('click', stopGame);
$(window).resize(fullscreenNaclModule);
}