mirror of
https://github.com/Daniongithub/ER-TPL.git
synced 2025-10-02 12:10:48 +00:00
Visualizzatore fermate: migliorie generali.
This commit is contained in:
@@ -51,8 +51,9 @@
|
||||
<div class="riga">
|
||||
<h2 class="piccolospazio">Ravenna:</h2>
|
||||
<p class="piccolospazio">
|
||||
<a class="novita" href="/start_menu/servizi/start-fermatebus/index.html">Visualizzatore fermate</a>: migliorie alla visualizzazione delle fermate <br>
|
||||
In arrivo "37251-37258 MAN Lion's City 12E".
|
||||
<a class="novita" href="/start_menu/servizi/start-fermatebus/index.html">Visualizzatore fermate</a>: versione mobile migliorata, rimosso parametro "Soppressa"<br>poichè rindondante con "Stato attuale" quando accade.<br>
|
||||
<a class="novita" href="/start_menu/servizi/start-fermatebus/index.html">Visualizzatore fermate</a>: migliorie alla visualizzazione delle fermate.<br>
|
||||
In arrivo: "37251-37258 MAN Lion's City 12E".
|
||||
</p>
|
||||
</div>
|
||||
<div class="riga">
|
||||
|
@@ -19,6 +19,7 @@
|
||||
</nav>
|
||||
</header>
|
||||
<h2>Informazioni fermata <span id="fermata-span"></span></h2>
|
||||
<p style="color: orange;">Attenzione: i dati qui visualizzati sono direttamente ottenuti da Start Romagna,<br>pertanto eventuali imprecisioni o errori non sono a carico nostro.</p>
|
||||
<div id="tabella-container">Caricamento dati...</div>
|
||||
<footer>
|
||||
<p>Copyright © 2025 ER-TPL Team - <a href="https://ertpl.pages.dev" target="_blank">ertpl.pages.dev</a> - code by Il Dani <a href="https://github.com/Daniongithub/startfermate" target="_blank">codice sorgente</a><br>
|
||||
|
@@ -36,7 +36,6 @@ function caricadati(){
|
||||
<th>Orario</th>
|
||||
<th>Stato attuale</th>
|
||||
<th>Veicolo</th>
|
||||
<th>Soppressa</th>
|
||||
</tr>
|
||||
`;
|
||||
table.appendChild(thead);
|
||||
@@ -54,7 +53,6 @@ function caricadati(){
|
||||
<td>${item.orario}</td>
|
||||
<td>${item.stato}</td>
|
||||
<td>${item.mezzo}</td>
|
||||
<td>${item.soppressa ? 'Sì' : 'No'}</td>
|
||||
`;
|
||||
tbody.appendChild(tr);
|
||||
});
|
||||
|
Reference in New Issue
Block a user