feat: adding micasend

This commit is contained in:
Baptiste 2024-12-17 18:10:36 +01:00
parent 11c2e362a0
commit ba36d6165d
3 changed files with 5 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -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>

View file

@ -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");
});
}