This repository has been archived on 2025-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
airport/departures/oscript.js

19 lines
519 B
JavaScript

document.addEventListener('DOMContentLoaded', () => {
const headers = document.querySelectorAll('th');
const headerTexts = [
["Orario", "Time"],
["Compagnia", "Airline"],
["# Volo", "Flight #"],
["Destinazione", "Destination"],
["Informazioni", "Status"]
];
let index = 0;
setInterval(() => {
headers.forEach((header, i) => {
header.textContent = headerTexts[i][index % headerTexts[i].length];
});
index++;
}, 10000);
});