2015-01-01 03:47:29 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-01-15 11:40:40 +01:00
|
|
|
<title>Converse</title>
|
2015-01-01 03:47:29 +01:00
|
|
|
<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" />
|
2020-01-15 11:40:40 +01:00
|
|
|
<meta name="description" content="Converse XMPP/Jabber Chat" />
|
2015-01-01 03:47:29 +01:00
|
|
|
<meta name="author" content="JC Brand" />
|
|
|
|
<meta name="keywords" content="xmpp chat webchat converse.js" />
|
2020-01-09 15:43:08 +01:00
|
|
|
<link rel="manifest" href="./manifest.json">
|
2019-05-14 10:31:51 +02:00
|
|
|
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico"/>
|
2019-05-13 18:50:25 +02:00
|
|
|
<link type="text/css" rel="stylesheet" media="screen" href="dist/converse.css" />
|
2020-04-29 15:12:20 +02:00
|
|
|
<script src="https://cdn.conversejs.org/3rdparty/libsignal-protocol.min.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">
|
2019-01-02 22:26:31 +01:00
|
|
|
<div id="conversejs-bg"></div>
|
2015-01-01 03:47:29 +01:00
|
|
|
<script>
|
2019-08-10 12:13:05 +02:00
|
|
|
|
|
|
|
converse.plugins.add('converse-debug', {
|
|
|
|
initialize () {
|
|
|
|
const { _converse } = this;
|
|
|
|
window._converse = _converse;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-02 17:18:42 +02:00
|
|
|
converse.initialize({
|
|
|
|
auto_away: 300,
|
2020-04-10 15:39:17 +02:00
|
|
|
enable_smacks: true,
|
2019-08-07 10:28:49 +02:00
|
|
|
i18n: 'af',
|
2020-04-10 15:39:17 +02:00
|
|
|
loglevel: 'debug',
|
|
|
|
message_archiving: 'always',
|
|
|
|
muc_respect_autojoin: true,
|
2020-01-10 11:02:40 +01:00
|
|
|
muc_show_logs_before_join: true,
|
2020-04-10 15:39:17 +02:00
|
|
|
notify_all_room_messages: ['discuss@conference.conversejs.org'],
|
2020-09-30 18:35:58 +02:00
|
|
|
persistent_store: 'IndexedDB',
|
2020-04-10 15:39:17 +02:00
|
|
|
theme: 'concord',
|
|
|
|
view_mode: 'fullscreen',
|
2018-05-29 12:00:23 +02:00
|
|
|
websocket_url: 'wss://conversejs.org/xmpp-websocket',
|
2019-08-10 12:13:05 +02:00
|
|
|
whitelisted_plugins: ['converse-debug'],
|
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>
|