fullscreen.html 2.4 KB

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