Skip to content

Commit

Permalink
fix: Nouvelle API temps d'attente
Browse files Browse the repository at this point in the history
fix #44
  • Loading branch information
Dougniel committed Jul 11, 2023
1 parent 0d43d8f commit ded109e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gravity/js/canvas.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let url = "http://localhost:8081/temps-attente/agences/noumea";
let url = "http://localhost:8081/agences?commune=noumea";
let data;

let fps = 0;
Expand Down
2 changes: 1 addition & 1 deletion jumpers/js/sketch.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let url = "http://localhost:8081/temps-attente/agences/"; // API URL
let url = "http://localhost:8081/agences?commune="; // API URL
let data = [];
let communes = []; // DATA ARRAY
let communeId = 0;
Expand Down
4 changes: 2 additions & 2 deletions orbit/js/orbit.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
let data;
//let url = "http://localhost:8081/temps-attente/agences/";
let url = "http://localhost:8081/temps-attente/agences/noumea";
//let url = "http://localhost:8081/agences/";
let url = "http://localhost:8081/agences?commune=noumea";
let fps = 0;
let fpsHistory = [];

Expand Down
4 changes: 2 additions & 2 deletions orbit/orbit.min.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<body>
<script>
let data;
//let url = "http://localhost:8081/temps-attente/agences/";
let url = "http://localhost:8081/temps-attente/agences/noumea";
//let url = "http://localhost:8081/agences/";
let url = "http://localhost:8081/agences?commune=noumea";
let fps = 0;

let slider;
Expand Down

0 comments on commit ded109e

Please sign in to comment.