Skip to content

Commit

Permalink
Cleand up Code
Browse files Browse the repository at this point in the history
  • Loading branch information
theberzer committed Oct 29, 2018
1 parent 440f92d commit fce51af
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion rocket_league_ai_frontend/assets/js/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ $("#submitBtn").click(function() {
method: 'POST',
headers: { "Authorization": 'Bearer ' + idToken },
success: function(data) {
console.log(data);
$.ajax({
async: true,
url: "https://rlaitsas.azurewebsites.net/api/SASTokenGenerator?code=aG3zfIypmcp1tc8VRv2JvDrlbBc6CAcAAC0DukMRaAmuBttaN3x5Mw==",
Expand Down
6 changes: 0 additions & 6 deletions rocket_league_ai_frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
function getStats(){
$.getJSON("https://rlaitfunctions.azurewebsites.net/api/getCurrentMatch", function(data) {
data = JSON.parse(data);
console.log(data);
//P1
$("#p1Avatar").attr("src", "https://rlaitimagesandcode.blob.core.windows.net/rlait/" + data[4].name);

Expand All @@ -54,11 +53,7 @@

//Names
$("#currentMatchNames").html(data[3].name + " VS " + data[8].name);

$("#currentMatch").show();



});

$.getJSON("https://rlaitfunctions.azurewebsites.net/api/getUpcomingMatches", function(data) {
Expand All @@ -71,7 +66,6 @@
}
}
$("#upcomingMatches").show();

});

$.getJSON('https://rlaitfunctions.azurewebsites.net/api/getLeaderBoard', function(data) {
Expand Down

0 comments on commit fce51af

Please sign in to comment.