2017-02-27 08:42:17 +01:00
|
|
|
/** Converse.js
|
|
|
|
*
|
|
|
|
* An XMPP chat client that runs in the browser.
|
|
|
|
*
|
2018-01-29 16:33:30 +01:00
|
|
|
* Version: 3.3.2
|
2017-02-27 08:42:17 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* jshint ignore:start */
|
|
|
|
(function (root, factory) {
|
|
|
|
if (typeof define === 'function' && define.amd) {
|
|
|
|
//Allow using this built library as an AMD module
|
|
|
|
//in another project. That other project will only
|
|
|
|
//see this AMD call, not the internal modules in
|
|
|
|
//the closure below.
|
|
|
|
define([], factory);
|
|
|
|
} else {
|
|
|
|
//Browser globals case.
|
|
|
|
root.converse = factory();
|
|
|
|
}
|
|
|
|
}(this, function () {
|
|
|
|
//almond, and your modules will be inlined here
|
|
|
|
/* jshint ignore:end */
|