style updates to message-only

This commit is contained in:
Ginger Wong
2020-08-19 14:46:20 -07:00
parent 0325af3ce7
commit 756311f03c
6 changed files with 15 additions and 13 deletions

View File

@@ -13,7 +13,7 @@
</head>
<body class="bg-gray-300 text-gray-800">
<body class="messages-only">
<div id="chat-container"></div>
@@ -21,7 +21,7 @@
import { render, html } from "https://unpkg.com/htm/preact/index.mjs?module";
import StandaloneChat from './js/chat/standalone.js';
const messagesOnly = true;
const messagesOnly = false;
(function () {
render(html`<${StandaloneChat} messagesOnly=${messagesOnly} />`, document.getElementById("chat-container"));