Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <title>Virtual Collection demo</title> |
| 5 | <meta charset="utf-8" /> |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 6 | <script data-main="vcdemo.js" src="../js/lib/require.js" async="async"></script> |
Nils Diewald | ce32811 | 2015-04-08 22:48:18 +0000 | [diff] [blame] | 7 | <link type="text/css" rel="stylesheet" href="../css/kalamar.css" /> |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 8 | <style type="text/css" rel="stylesheet"> |
| 9 | |
| 10 | body { |
Nils Diewald | ce32811 | 2015-04-08 22:48:18 +0000 | [diff] [blame] | 11 | background-color: #9bad0b; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 12 | color: white; |
| 13 | font-family: tahoma, verdana, arial; |
| 14 | font-size: 10pt; |
| 15 | margin: 20px; |
| 16 | } |
| 17 | |
| 18 | .info { |
| 19 | background-color:white; |
| 20 | color: black; |
| 21 | padding: 1em; |
| 22 | font-family: mono; |
| 23 | } |
| 24 | </style> |
| 25 | </head> |
| 26 | <body> |
| 27 | <div id="vc"></div> |
| 28 | <div id="menu" class="vc"></div> |
| 29 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 30 | <hr /> |
| 31 | |
| 32 | <p><a onclick="showJSON()" style="cursor:pointer">show JSON!</a></p> |
| 33 | <div id="json" class="info"></div> |
| 34 | |
| 35 | <hr /> |
| 36 | |
| 37 | <p><a onclick="showQuery()" style="cursor:pointer">show Query!</a></p> |
| 38 | <div id="query" class="info"></div> |
| 39 | |
| 40 | </body> |
| 41 | </html> |