diff options
| author | Joel Stålnacke <joel@saker.fi> | 2025-09-28 14:28:50 +0300 |
|---|---|---|
| committer | Joel Stålnacke <joel@saker.fi> | 2025-09-28 14:28:50 +0300 |
| commit | 96aea2535a85c615111496f6d077eb0e9c9fa644 (patch) | |
| tree | aec23de7886fad7093e7a074befddc0bdd8ee348 /Aamukampa.Frontend | |
| parent | 93fca308f19587a92715004c4ba83f3c0310625c (diff) | |
Move HTML views from Core to Web
Fable can't bundle Falco.Markup because it's a compiled library, so we
can't have templates on the frontend.
Diffstat (limited to 'Aamukampa.Frontend')
| -rw-r--r-- | Aamukampa.Frontend/App.fs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Aamukampa.Frontend/App.fs b/Aamukampa.Frontend/App.fs index d388013..3d188e1 100644 --- a/Aamukampa.Frontend/App.fs +++ b/Aamukampa.Frontend/App.fs @@ -18,11 +18,11 @@ window.setInterval((fun () -> | false, _ -> None document.getElementById "time-units" |> fun el -> - el.outerHTML <- - Views.Main.timeUnits { - TimeLeft = Domain.getTimeLeft k st now |> Option.get - TimeCompleted = Domain.getTimeCompleted k now |> Option.get - } |> renderHtml + // el.outerHTML <- + // Views.Main.timeUnits { + // TimeLeft = Domain.getTimeLeft k st now |> Option.get + // TimeCompleted = Domain.getTimeCompleted k now |> Option.get + // } |> renderHtml ()), 1000, [||]) |> ignore |
