46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head lang="en">
|
|
<meta charset="utf-8">
|
|
<title>Jibo Simulator</title>
|
|
<link rel="stylesheet" type="text/css" href="assets/css/client.css" />
|
|
<link rel="stylesheet" type="text/css" href="assets/css/font-awesome.min.css"/>
|
|
</head>
|
|
<body>
|
|
<div id="toolbar" class="tools"></div>
|
|
<div id="container">
|
|
<div id="visualizer"></div>
|
|
<div id="face" class="loading">
|
|
<div id="faceContent">
|
|
<div id="loader"></div>
|
|
<div id="notifications"></div>
|
|
<!--
|
|
The partition attribute is important so that devtools and other browser settings are remembered. See:
|
|
http://electron.atom.io/docs/api/web-view-tag/#partition
|
|
-->
|
|
<webview id="skill"
|
|
partition="persist:jibo-skill"
|
|
style="position: absolute; display: inline-flex; width: 1280px; height: 720px;"
|
|
autoresize="on"
|
|
nodeintegration
|
|
width="1280"
|
|
height="720"
|
|
minwidth="1280"
|
|
maxwidth="1280"
|
|
minheight="720"
|
|
maxheight="720"
|
|
>
|
|
</webview>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="sidebar"></div>
|
|
<script> require('./client'); </script>
|
|
|
|
<!--
|
|
The partition attribute is important so that devtools and other browser settings are remembered. See:
|
|
http://electron.atom.io/docs/api/web-view-tag/#partition
|
|
-->
|
|
</body>
|
|
</html>
|