9eba9989dc
Also fixed errors with converse obj not being defined in the MUC plugin.
19 lines
552 B
JavaScript
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];
|
|
});
|