blob: 9eb764830f9b44c5334d9bb0de8ef256698ce469 [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001<!DOCTYPE html>
2<html>
3 <head>
4 <title>Virtual Collection demo</title>
5 <meta charset="utf-8" />
Nils Diewald0e6992a2015-04-14 20:13:52 +00006 <script data-main="vcdemo.js" src="../js/lib/require.js" async="async"></script>
Nils Diewaldce328112015-04-08 22:48:18 +00007 <link type="text/css" rel="stylesheet" href="../css/kalamar.css" />
Nils Diewalda944fab2015-04-08 21:02:04 +00008 <style type="text/css" rel="stylesheet">
9
10body {
Nils Diewaldce328112015-04-08 22:48:18 +000011 background-color: #9bad0b;
Nils Diewalda944fab2015-04-08 21:02:04 +000012 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 Diewalda944fab2015-04-08 21:02:04 +000030 <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>