mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-06-02 07:00:24 -04:00
46 lines
976 B
HTML
46 lines
976 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Nebula mashup</title>
|
|
<script src="./node_modules/enigma.js/enigma.js"></script>
|
|
<script src="../../packages/nucleus/dist/nucleus.js"></script>
|
|
|
|
<link rel="stylesheet" href="./node_modules/leonardo-ui/dist/leonardo-ui.css" type="text/css"/>
|
|
|
|
<style>
|
|
body {
|
|
background: #eee;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "LUI icons";
|
|
src: url(node_modules/leonardo-ui/dist/lui-icons.woff) format('woff'),
|
|
url(node_modules/leonardo-ui/dist/lui-icons.ttf) format('truetype');
|
|
}
|
|
|
|
.content {
|
|
margin: 0 auto;
|
|
width: 80%;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.object {
|
|
position: relative;
|
|
width: 600px;
|
|
height: 400px;
|
|
background-color: white;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="content">
|
|
<div class="object" data-type='foo'></div>
|
|
</div>
|
|
|
|
<script src="connect.js"></script>
|
|
<script src="index.js"></script>
|
|
</html>
|