diff options
author | stuebinm | 2021-03-15 18:38:02 +0100 |
---|---|---|
committer | stuebinm | 2021-03-15 18:38:02 +0100 |
commit | 0596b9f6c561daa67945adb81570efd30650dffd (patch) | |
tree | 4e86c41cd264dd9220d24cc9fe564a93b7a84f12 /picarones-elm/slide.html | |
parent | 393186f9ebf0bf43a1add8bd8d0e37be566ae8cc (diff) |
Add a display view which does nothing but display the slides
(should be useful e.g. as input for a screen recorder)
Diffstat (limited to 'picarones-elm/slide.html')
-rw-r--r-- | picarones-elm/slide.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/picarones-elm/slide.html b/picarones-elm/slide.html index a72fb3c..4c63f97 100644 --- a/picarones-elm/slide.html +++ b/picarones-elm/slide.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <title>Main</title> - <script src="Main.js"></script> + <script src="Switcher.js"></script> <link rel="stylesheet" type="text/css" href="document.css" /> </head> @@ -12,7 +12,7 @@ <script> let args = location.hash.split("#").slice(1); - var app = Elm.Main.init({ + var app = Elm.Switcher.init({ node: document.getElementById('elm'), flags: [args[0], parseInt(args[1])] }); |