status-chat-widget/README.md

19 lines
546 B
Markdown
Raw Normal View History

2019-04-11 02:06:57 +00:00
# Status Chat Widget
2019-04-11 00:51:29 +00:00
2019-04-11 02:06:57 +00:00
Easily embed a status chat in your website.
### Usage
Copy paste the following snippet to your website
2019-04-11 00:51:29 +00:00
2019-04-11 02:07:50 +00:00
```Html
<link rel="stylesheet" href="https://status-im.github.io/status-chat-widget/themes/status.css">
2019-04-11 00:51:29 +00:00
<script src="https://status-im.github.io/status-chat-widget/dist/js/statuswidget.js"></script>
<div id="status-chat-widget"></div>
2019-04-11 02:08:53 +00:00
<script>StatusWidget("your-channel-name", document.getElementById("status-chat-widget"));</script>
2019-04-11 00:51:29 +00:00
```
2019-04-11 02:06:57 +00:00
Modify `your-channel-name` to your channel of choice
And you're done!