diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-02 18:39:58 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-08 11:50:53 -0400 |
commit | b7170b01b47a825d9de5664a0e8865ee5f655908 (patch) | |
tree | 54bc45c3821a99de42cdef3bb46f852383761107 /embeds/frp-color-picker/index.html | |
parent | 0db5a7271177e9792bf8cb24827ba4afa26c7a6d (diff) |
Add FRP with propagators post.
Diffstat (limited to 'embeds/frp-color-picker/index.html')
-rw-r--r-- | embeds/frp-color-picker/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/embeds/frp-color-picker/index.html b/embeds/frp-color-picker/index.html new file mode 100644 index 0000000..e5c4372 --- /dev/null +++ b/embeds/frp-color-picker/index.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <head> + <title>FRP color picker</title> + <link rel="stylesheet" type="text/css" href="propagators.css"/> + <script type="text/javascript" src="hoot/reflect.js"></script> + <script type="text/javascript" src="propagators.js"></script> + </head> + <body> + <article id="wasm-error" hidden="true"> + <h1>Uh oh!</h1> + <p> + A browser with Wasm GC and tail call support is required for + this demo. + </p> + <p> + We recommend using either Firefox or Chrome. + </p> + <p> + Safari is currently unsupported. Likewise, <emph>all browsers</emph> on + iOS are unsupported, as they are all secretly Safari under the + hood. + </p> + </article> + </body> +</html> |