Porovnat revize

..

2 commitů

Autor SHA1 Zpráva Datum
Baptiste
b4fa812f46 Merge branch 'master' of https://git.etud.insa-toulouse.fr/rebillar/GrandTabernacleAutoVI 2024-12-17 18:10:42 +01:00
Baptiste
ba36d6165d feat: adding micasend 2024-12-17 18:10:36 +01:00
3 změnil soubory, kde provedl 5 přidání a 0 odebrání

binární
public_html/assets/phone/micasend.png Normální soubor

Binární soubor nebyl zobrazen.

Za

Šířka:  |  Výška:  |  Velikost: 29 KiB

Zobrazit soubor

@ -48,6 +48,7 @@
<img src="./assets/phone/utube.png" class="icon" id="appli-utube">
<img src="./assets/phone/gogole.png" class="icon" id="appli-goo">
<img src="./assets/phone/lester.jpeg" class="icon" id="appli-lest" style="display:none">
<img src="./assets/phone/micasend.png" class="icon" id="appli-micasend">
</div>
<iframe id="webview" style="overflow: hidden;"></iframe>

Zobrazit soubor

@ -42,6 +42,10 @@ class Phone{
document.getElementById("appli-lest").addEventListener("click", (e) => {
this.webviewName = "Lester";
this.changeWindow("assets/phone/webview/lester.html");
});
document.getElementById("appli-micasend").addEventListener("click", (e) => {
this.webviewName = "Micasend";
this.changeWindow("https://micasend.magictintin.fr");
});
}