From 659d8cc795d7828af8728e44924f31bd89158906 Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Sun, 3 Apr 2016 09:21:40 -0400 Subject: [PATCH] fixed pairing cancel button this closes #27 --- index.html | 6 +++--- static/js/index.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index a5918a9..f7269a6 100644 --- a/index.html +++ b/index.html @@ -86,7 +86,7 @@

- +
@@ -98,8 +98,8 @@

- - + +
diff --git a/static/js/index.js b/static/js/index.js index 99f1f9c..fa11ced 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -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); }