fullscreen.html 2.9 KB

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