2016-02-16 08:46:47 +01:00
|
|
|
/* 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.
|
2015-07-10 10:35:33 +02:00
|
|
|
*/
|
2016-02-16 08:46:47 +01:00
|
|
|
"converse-muc", // XEP-0045 Multi-user chat
|
2016-02-13 23:58:50 +01:00
|
|
|
"converse-otr", // Off-the-record encryption for one-on-one messages
|
2016-02-16 08:46:47 +01:00
|
|
|
/* End: Removable components */
|
2015-07-17 16:49:58 +02:00
|
|
|
|
2016-02-16 08:46:47 +01:00
|
|
|
"converse-core"
|
|
|
|
], function() {
|
|
|
|
return arguments[arguments.length-1];
|
|
|
|
});
|