mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-25 10:00:20 -04:00
* chore: add dev mashup example * chore: update example readme * fix: update schema version * chore: change stardust to dep
45 lines
827 B
HTML
45 lines
827 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Nebula local mashup</title>
|
|
<style>
|
|
body {
|
|
background: #eee;
|
|
}
|
|
|
|
.content {
|
|
margin: 0 auto;
|
|
width: 80%;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.object {
|
|
position: relative;
|
|
height: 400px;
|
|
background-color: white;
|
|
}
|
|
|
|
.toolbar {
|
|
background-color: white;
|
|
margin: 12px 0px;
|
|
}
|
|
|
|
.listbox {
|
|
position: relative;
|
|
height: 352px;
|
|
background-color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<div class="toolbar"></div>
|
|
<div class="object" data-type="bar"></div>
|
|
<div class="object" data-type="line"></div>
|
|
</div>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|