xmpp.chapril.org-conversejs/converse.js
JC Brand 9eba9989dc OTR stuff has been moved to a component/plugin in src/converse-otr.js
Also fixed errors with converse obj not being defined in the MUC plugin.
2016-02-16 07:47:16 +00:00

19 lines
552 B
JavaScript

/* Converse.js build configuration
*
* This file is used to tell require.js which components (or plugins) to load
* when it generates a build.
*/
define("converse", [
/* Removable components
* --------------------
* Any of the following components can be removed if they're not needed.
*/
"converse-muc", // XEP-0045 Multi-user chat
"converse-otr", // Off-the-record encryption for one-on-one messages
/* End: Removable components */
"converse-core"
], function() {
return arguments[arguments.length-1];
});