From 202ebc570f1ae194ffade7c5d3209f7007f5d6c0 Mon Sep 17 00:00:00 2001 From: Lance_Lake Date: Thu, 15 Dec 2022 08:46:07 -0800 Subject: [PATCH] Moved locations of URL for API --- script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script.js b/script.js index be45120..423f92f 100644 --- a/script.js +++ b/script.js @@ -25,13 +25,13 @@ var score = 0; var userId = localStorage.getItem("userId") || ''; -var GetLeaderboard = 'http://www.5thwallgaming.com/Bootcamp/index.cfm?action=GetLeaderboard'; +var GetLeaderboard = 'http://www.5thwallgaming.com/Bootcamp/Projects/Clicky-Circle/index.cfm?action=GetLeaderboard'; apiSend('GetLeaderboard',GetLeaderboard); -var CheckID = 'http://www.5thwallgaming.com/Bootcamp/index.cfm?action=CheckID&userID=' + userId; +var CheckID = 'http://www.5thwallgaming.com/Bootcamp/Projects/Clicky-Circle/index.cfm?action=CheckID&userID=' + userId; apiSend("CheckID", CheckID); -var GetScore = 'http://www.5thwallgaming.com/Bootcamp/index.cfm?action=GetScore&userID=' + userId; +var GetScore = 'http://www.5thwallgaming.com/Bootcamp/Projects/Clicky-Circle/index.cfm?action=GetScore&userID=' + userId; apiSend('GetScore',GetScore); var personalHighScore = +localStorage.getItem("personalHighScore") || 0;