2017-06-13 21:07:42 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html class="no-js" lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<title>inVerse</title>
|
|
|
|
<link rel="shortcut icon" type="image/ico" href="css/images/favicon.ico"/>
|
|
|
|
<link type="text/css" rel="stylesheet" media="screen" href="css/inverse.css" />
|
|
|
|
<script src="node_modules/requirejs/require.js"></script>
|
|
|
|
<script src="src/config.js"></script>
|
|
|
|
<script src="inverse.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="content">
|
|
|
|
<div class="inner-content">
|
|
|
|
<h1 class="brand-heading"><i class="icon-conversejs"></i> inVerse</h1>
|
|
|
|
<p class="no-chats">
|
|
|
|
You don't have any chats open.<br/></br/>
|
|
|
|
Start a new conversation by clicking on a contact or a room in the left navigation.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
require(['inverse'], function (converse) {
|
|
|
|
converse.initialize({
|
|
|
|
auto_away: 300,
|
|
|
|
i18n: 'en',
|
|
|
|
notify_all_room_messages: [
|
|
|
|
'discuss@conference.conversejs.org'
|
|
|
|
],
|
2017-06-14 10:47:57 +02:00
|
|
|
whitelisted_plugins: ['converse-inverse', 'converse-singleton'],
|
2017-06-13 21:07:42 +02:00
|
|
|
auto_reconnect: true,
|
|
|
|
bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
|
|
|
|
message_archiving: 'always',
|
|
|
|
debug: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|