diff --git a/light9/ascoltami/Light9AscoltamiUi.ts b/light9/ascoltami/Light9AscoltamiUi.ts --- a/light9/ascoltami/Light9AscoltamiUi.ts +++ b/light9/ascoltami/Light9AscoltamiUi.ts @@ -252,12 +252,12 @@ export class Light9AscoltamiUi extends L const h1 = document.querySelector("h1")!; h1.innerText = h1.innerText.replace("{{host}}", config.host); } catch (e) {} - byId("nav").innerText = navigator.userAgent; + // byId("nav").innerText = navigator.userAgent; var updateFreq = navigator.userAgent.indexOf("Linux") != -1 ? 10 : 2; - if (navigator.userAgent.match(/Windows NT/)) { - // helper laptop - updateFreq = 10; - } + // if (navigator.userAgent.match(/Windows NT/)) { + // // helper laptop + // updateFreq = 10; + // } byId("updateReq").innerText = "" + updateFreq; (window as any).finishOldStyleSetup(this.times, this.onOldStyleUpdate.bind(this)); diff --git a/light9/ascoltami/index.html b/light9/ascoltami/index.html --- a/light9/ascoltami/index.html +++ b/light9/ascoltami/index.html @@ -11,7 +11,7 @@ padding-left: 0.4em; } .dimStalled #currentTime { - font-size: 40px; + font-size: 20px; background: green; color: black; padding: 3px; @@ -27,7 +27,7 @@ } #page { width: 100%; - height: 90vh; /* my phone was losing the bottom :( */ + height: 100vh; /* my phone was losing the bottom :( */ display: flex; flex-direction: column; } @@ -47,8 +47,8 @@
-