Mercurial > code > home > repos > light9
annotate web/edit-choice-demo.html @ 2404:9cbc93f80b05
cleanup
author | drewp@bigasterisk.com |
---|---|
date | Fri, 17 May 2024 17:41:22 -0700 |
parents | 4556eebe5d73 |
children |
rev | line source |
---|---|
1693 | 1 <!doctype html> |
2 <html> | |
3 <head> | |
4 <title></title> | |
5 <meta charset="utf-8" /> | |
1714
f2265601ead6
edit-choice/etc fixes and tests
Drew Perttula <drewp@bigasterisk.com>
parents:
1706
diff
changeset
|
6 <script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-lite.js"></script> |
f2265601ead6
edit-choice/etc fixes and tests
Drew Perttula <drewp@bigasterisk.com>
parents:
1706
diff
changeset
|
7 |
1693 | 8 <link rel="import" href="rdfdb-synced-graph.html"> |
9 <link rel="import" href="edit-choice.html"> | |
1706
e30493d458f9
more npm setup. n3 upgraded but code is not, yet
drewp@bigasterisk.com
parents:
1693
diff
changeset
|
10 <script src="/node_modules/n3/n3-browser.js"></script> |
1693 | 11 <script src="/lib/knockout/dist/knockout.js"></script> |
12 <script src="/lib/shortcut/index.js"></script> | |
13 <script src="/lib/async/dist/async.js"></script> | |
14 <script src="/lib/underscore/underscore-min.js"></script> | |
15 </head> | |
16 <body> | |
17 <dom-bind> | |
18 <template> | |
19 <p> | |
20 <rdfdb-synced-graph graph="{{graph}}"></rdfdb-synced-graph> | |
21 </p> | |
22 <p> | |
23 edit-choice: <edit-choice graph="{{graph}}" uri="http://example.com/hello"></edit-choice> | |
24 </p> | |
25 <p> | |
26 <a href="http://light9.bigasterisk.com/effect/spideredge" >this has a label</a> | |
27 </template> | |
28 </dom-bind> | |
29 </body> | |
30 </html> |