fullscreen.html 3.0 KB

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