2015-01-01 03:47:29 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Converse.js</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="description" content="Converse.js: A free chat client for your website" />
|
|
|
|
<meta name="author" content="JC Brand" />
|
|
|
|
<meta name="keywords" content="xmpp chat webchat converse.js" />
|
|
|
|
<link rel="shortcut icon" type="image/ico" href="css/images/favicon.ico"/>
|
2018-05-24 12:52:32 +02:00
|
|
|
<link type="text/css" rel="stylesheet" media="screen" href="css/fullpage.css" />
|
2018-05-24 14:37:52 +02:00
|
|
|
<link type="text/css" rel="stylesheet" media="screen" href="css/converse.css" />
|
2018-08-19 09:10:32 +02:00
|
|
|
<script src="3rdparty/libsignal-protocol-javascript/dist/libsignal-protocol.js"></script>
|
2018-06-04 13:46:27 +02:00
|
|
|
<script src="dist/converse.js"></script>
|
2015-01-01 03:47:29 +01:00
|
|
|
</head>
|
|
|
|
|
2018-05-08 17:48:37 +02:00
|
|
|
<body class="reset">
|
2018-09-06 21:03:23 +02:00
|
|
|
<div class="content">
|
|
|
|
<div class="inner-content converse-brand row">
|
|
|
|
<div class="converse-brand__padding"></div>
|
|
|
|
<div class="converse-brand__heading">
|
|
|
|
<div class="converse-brand__text"><i class="icon-conversejs"></i>Converse</div>
|
|
|
|
<div class="converse-brand__byline">
|
|
|
|
brought to you by <a target="_blank" rel="nofollow" href="https://opkode.com">Opkode</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-01 03:47:29 +01:00
|
|
|
|
|
|
|
<script>
|
2018-06-02 17:18:42 +02:00
|
|
|
converse.initialize({
|
|
|
|
auto_away: 300,
|
|
|
|
i18n: 'en',
|
|
|
|
// auto_join_rooms: [
|
|
|
|
// 'discuss@conference.conversejs.org',
|
|
|
|
// 'prosody@conference.prosody.im',
|
|
|
|
// 'jdev@conference.jabber.org'
|
|
|
|
// ],
|
|
|
|
// websocket_url: 'ws://chat.example.org:5280/xmpp-websocket',
|
|
|
|
view_mode: 'fullscreen',
|
|
|
|
archived_messages_page_size: '500',
|
|
|
|
allow_public_bookmarks: true,
|
|
|
|
notify_all_room_messages: [
|
|
|
|
'discuss@conference.conversejs.org'
|
|
|
|
],
|
2018-06-05 13:01:47 +02:00
|
|
|
// bosh_service_url: 'http://chat.example.org:5280/http-bind/',
|
|
|
|
bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
|
2018-06-02 17:18:42 +02:00
|
|
|
message_archiving: 'always',
|
|
|
|
debug: true
|
2015-01-01 03:47:29 +01:00
|
|
|
});
|
|
|
|
</script>
|
2018-05-08 17:48:37 +02:00
|
|
|
</body>
|
2015-01-01 03:47:29 +01:00
|
|
|
</html>
|