2018-10-18 19:21:57 +02:00

24 lines
550 B
HTML
Executable File

<!-- head -->
<link rel="stylesheet" href="{{site.cdn}}{{site.version}}/quill.bubble.css">
<style>
.standalone-container {
margin: 50px auto;
max-width: 720px;
}
#bubble-container {
height: 350px;
}
</style>
<!-- head -->
<div class="standalone-container">
<div id="bubble-container"></div>
</div>
<!-- script -->
<script src="{{site.cdn}}{{site.version}}/{{site.quill}}"></script>
<script>
var quill = new Quill('#bubble-container', {
placeholder: 'Compose an epic...',
theme: 'bubble'
});
</script>
<!-- script -->