fullscreen.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!doctype html>
  2. <html class="no-js" lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  6. <title>Converse</title>
  7. <link rel="shortcut icon" type="image/ico" href="images/favicon.ico"/>
  8. <script type="text/javascript" src="inverse-analytics.js"></script>
  9. <noscript><p><img src="//stats.opkode.com/piwik.php?idsite=5" style="border:0;" alt="" /></p></noscript>
  10. <link type="text/css" rel="stylesheet" media="screen" href="https://cdn.conversejs.org/4.2.0/css/converse.min.css" />
  11. <script src="https://cdn.conversejs.org/3rdparty/libsignal-protocol.min.js"></script>
  12. <script src="https://cdn.conversejs.org/4.2.0/dist/converse.min.js"></script>
  13. </head>
  14. <body class="converse-fullscreen">
  15. <div id="conversejs-bg"></div>
  16. <script>
  17. /*
  18. @licstart
  19. This is free and unencumbered software released into the public domain.
  20. Anyone is free to copy, modify, publish, use, compile, sell, or
  21. distribute this software, either in source code form or as a compiled
  22. binary, for any purpose, commercial or non-commercial, and by any
  23. means.
  24. In jurisdictions that recognize copyright laws, the author or authors
  25. of this software dedicate any and all copyright interest in the
  26. software to the public domain. We make this dedication for the benefit
  27. of the public at large and to the detriment of our heirs and
  28. successors. We intend this dedication to be an overt act of
  29. relinquishment in perpetuity of all present and future rights to this
  30. software under copyright law.
  31. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  32. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  33. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  34. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  35. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  36. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  37. OTHER DEALINGS IN THE SOFTWARE.
  38. For more information, please refer to <http://unlicense.org/>
  39. @licend
  40. */
  41. converse.initialize({
  42. authentication: 'login',
  43. auto_away: 300,
  44. auto_reconnect: true,
  45. bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
  46. message_archiving: 'always',
  47. view_mode: 'fullscreen'
  48. });
  49. </script>
  50. </body>
  51. </html>