Skip to content

Commit

Permalink
does .. that fix it?
Browse files Browse the repository at this point in the history
  • Loading branch information
Iris-TheRainbow committed Jun 20, 2024
1 parent 2e55436 commit bd57c2a
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions _tabs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ order: 4
---
<head>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script language = 'javascript'>
<script language="javascript">
function getOPR() {
axios.get("https://api.ftcscout.org/rest/v1/teams/15031/quick-stats?season=2023&region=All")
.then(response => {
var opr = response.data["tot"]["value"];
document.getElementById("opr").innerHTML = opr;
})
rl.close();}
</script>
axios.get("https://api.ftcscout.org/rest/v1/teams/15031/quick-stats?season=2023&region=All")
.then(response => {
var opr = response.data["tot"]["value"];
document.getElementById("opr").innerHTML = opr;
})
rl.close();
}</script>
</head>

<body onload = "getOPR()">
<p>Hello!</p>

Expand Down

0 comments on commit bd57c2a

Please sign in to comment.