Chat.svelte 331 B

12345678910111213141516171819
  1. <style>
  2. .chatIframe {
  3. width: 100%;
  4. height: 100%;
  5. border: 0;
  6. display: block;
  7. position: relative;
  8. }
  9. </style>
  10. <script>
  11. import { live, channel } from "../stores.js";
  12. </script>
  13. <iframe
  14. title="live chat"
  15. class="chatIframe"
  16. src="{`https://kiwiirc.com/nextclient/#irc://irc.autistici.org:+6697/#${$channel}`}"
  17. ></iframe>