Non va niente lo stesso

This commit is contained in:
Leocraft1
2025-10-30 13:58:01 +01:00
parent 6953f0f0cc
commit dbc51012d6
4 changed files with 5 additions and 5 deletions

View File

@@ -111,7 +111,7 @@ document.getElementById('bacino').addEventListener('change', function(event) {
const selectedOption = event.target.value;
currentSelectedOption = selectedOption;
const urlFermate = `https://startapi.serverissimo.freeddns.org/fermateapi/bacino?selectedOption=${selectedOption}`;
const urlFermate = `https://api.vichingo455.freeddns.org/fermateapi/bacino?selectedOption=${selectedOption}`;
const radiobuttons = document.getElementById('radios');
const ricerca = document.getElementById('ricerca');

View File

@@ -3,7 +3,7 @@ const palina = params.get('palina');
const targetID = params.get('targetID');
const selectedOption = params.get('selectedOption');
const urlBackend = `https://startapi.serverissimo.freeddns.org/fermateapi/fermata?param=${targetID}&param2=${selectedOption}&palina=${palina}`;
const urlBackend = `https://api.vichingo455.freeddns.org/fermateapi/fermata?param=${targetID}&param2=${selectedOption}&palina=${palina}`;
function caricadati(){
fetch(urlBackend)
.then(res => res.json())
@@ -16,7 +16,7 @@ function caricadati(){
const container = document.getElementById('tabella-container');
container.innerHTML = '';
fetch('https://startapi.serverissimo.freeddns.org/fermateapi/versione')
fetch('https://api.vichingo455.freeddns.org/fermateapi/versione')
.then(res => res.text())
.then(versione => document.getElementById("ver").innerHTML = versione);