fullscreen.html 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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="css/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="css/converse.css" />
  11. <link type="text/css" rel="stylesheet" media="screen" href="css/fullpage.css" />
  12. <script src="3rdparty/libsignal-protocol.js"></script>
  13. <script src="dist/converse.js"></script>
  14. </head>
  15. <body class="reset">
  16. <div class="converse-content" style="display:none">
  17. <div class="inner-content converse-brand row">
  18. <div class="converse-brand__padding"></div>
  19. <div class="converse-brand__heading">
  20. <div class="converse-brand__text"><i class="icon-conversejs"></i>Converse</div>
  21. <div class="converse-brand__byline">
  22. brought to you by <a target="_blank" rel="nofollow" href="https://opkode.com">Opkode</a>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. <script>
  28. /*
  29. @licstart
  30. This is free and unencumbered software released into the public domain.
  31. Anyone is free to copy, modify, publish, use, compile, sell, or
  32. distribute this software, either in source code form or as a compiled
  33. binary, for any purpose, commercial or non-commercial, and by any
  34. means.
  35. In jurisdictions that recognize copyright laws, the author or authors
  36. of this software dedicate any and all copyright interest in the
  37. software to the public domain. We make this dedication for the benefit
  38. of the public at large and to the detriment of our heirs and
  39. successors. We intend this dedication to be an overt act of
  40. relinquishment in perpetuity of all present and future rights to this
  41. software under copyright law.
  42. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  43. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  44. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  45. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  46. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  47. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  48. OTHER DEALINGS IN THE SOFTWARE.
  49. For more information, please refer to <http://unlicense.org/>
  50. @licend
  51. */
  52. converse.initialize({
  53. authentication: 'login',
  54. auto_away: 300,
  55. auto_reconnect: true,
  56. bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
  57. message_archiving: 'always',
  58. view_mode: 'fullscreen'
  59. }).then(function () {
  60. setTimeout(function () {
  61. document.querySelector('.converse-content').style = '';
  62. }, 1000);
  63. });
  64. </script>
  65. </body>
  66. </html>