diff options
author | William Carroll <wpcarro@gmail.com> | 2023-01-12T04·55-0800 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2023-01-17T21·08+0000 |
commit | 0d4f3433deffd127075209480427f43b4c5c4e6a (patch) | |
tree | 71a8ccfd4eea93d1f37e4313c08e145a9abe1196 /users/wpcarro/scratch/simple-select/index.html | |
parent | 425a54d36102e2909e7a99d816b6615ac5523996 (diff) |
feat(wpcarro/slx): Simple Select impl'd in JS r/5680
Proof-of-concept implementation of "simple select" to write browser apps that can filter lists with labels like: ``` author:Hemingway title:For\sWhom.+ ``` Change-Id: I6c4cc65fe6319c9230fdc1e983462864acdc6aef Reviewed-on: https://cl.tvl.fyi/c/depot/+/7812 Reviewed-by: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/scratch/simple-select/index.html')
-rw-r--r-- | users/wpcarro/scratch/simple-select/index.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/simple-select/index.html b/users/wpcarro/scratch/simple-select/index.html new file mode 100644 index 000000000000..f7d4576f79a1 --- /dev/null +++ b/users/wpcarro/scratch/simple-select/index.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + </head> + <body> + <script src="./index.js"></script> + </body> +</html> |