xmpp.chapril.org-conversejs/converse.js

20 lines
610 B
JavaScript
Raw Normal View History

/* 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 may be removed if they're not needed.
2015-07-10 10:35:33 +02:00
*/
"converse-muc", // XEP-0045 Multi-user chat
"converse-otr", // Off-the-record encryption for one-on-one messages
"converse-register", // XEP-0077 In-band registration
/* End: Removable components */
"converse-core"
], function() {
return arguments[arguments.length-1];
});