ac867c9524
Builds are now themselves UMD modules, so they could be `require`'d like any other AMD module or they can still be used as old ES5 modules with globals. Additionally the build is now closured, so that the almond API doesn't pollute the global context with `define` or `require`. This does however mean that `require` can no longer be used outside of the build (unless requirej.s is included directly.
78 lines
3.3 KiB
HTML
78 lines
3.3 KiB
HTML
<!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"/>
|
|
<link type="text/css" rel="stylesheet" media="screen" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
|
|
<link type="text/css" rel="stylesheet" media="screen" href="node_modules/font-awesome/css/font-awesome.min.css" />
|
|
<link type="text/css" rel="stylesheet" media="screen" href="css/theme.css" />
|
|
<link type="text/css" rel="stylesheet" media="screen" href="css/converse.css" />
|
|
<script src="node_modules/requirejs/require.js"></script>
|
|
<script src="src/config.js"></script>
|
|
</head>
|
|
|
|
<body id="page-top" data-spy="scroll" data-target=".navbar-custom">
|
|
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header page-scroll">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
|
|
<i class="fa fa-bars"></i>
|
|
</button>
|
|
</div>
|
|
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
|
|
<ul class="nav navbar-nav"><li> <a href="/docs/html/index.html">Documentation</a> </li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="intro">
|
|
<div class="intro-body">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<h1 class="brand-heading"><i class="icon-conversejs"></i>Converse.js</h1>
|
|
<p class="intro-text">Developer page.</p>
|
|
<p class="intro-text">
|
|
Converse.js will only work on this page if you have
|
|
<a href="https://conversejs.org/docs/html/development.html">set up the development environment</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
|
|
<script>
|
|
require(['converse'], function (converse) {
|
|
converse.initialize({
|
|
auto_away: 300,
|
|
i18n: locales['af'],
|
|
auto_join_rooms: [
|
|
'discuss@conference.conversejs.org',
|
|
'prosody@conference.prosody.im',
|
|
'jdev@conference.jabber.org'
|
|
],
|
|
notify_all_room_messages: [
|
|
'discuss@conference.conversejs.org'
|
|
],
|
|
auto_reconnect: true,
|
|
bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
|
|
message_archiving: 'always',
|
|
show_controlbox_by_default: true,
|
|
strict_plugin_dependencies: false,
|
|
chatstate_notification_blacklist: ['mulles@movim.eu'],
|
|
xhr_user_search: false,
|
|
debug: true
|
|
});
|
|
});
|
|
</script>
|
|
</html>
|