2017-01-26 15:49:02 +01:00
|
|
|
/*global define */
|
2016-03-07 17:35:08 +01:00
|
|
|
if (typeof define !== 'undefined') {
|
2017-02-17 21:33:05 +01:00
|
|
|
// The section below determines which plugins will be included in a build
|
2017-02-15 20:33:47 +01:00
|
|
|
define([
|
2017-02-14 15:08:39 +01:00
|
|
|
"converse-core",
|
2016-03-07 17:35:08 +01:00
|
|
|
/* START: Removable components
|
2017-01-20 10:18:18 +01:00
|
|
|
* --------------------
|
|
|
|
* Any of the following components may be removed if they're not needed.
|
|
|
|
*/
|
2016-03-13 17:16:53 +01:00
|
|
|
"converse-chatview", // Renders standalone chat boxes for single user chat
|
2016-06-09 11:01:54 +02:00
|
|
|
"converse-controlbox", // The control box
|
2016-06-27 23:50:38 +02:00
|
|
|
"converse-bookmarks", // XEP-0048 Bookmarks
|
2017-06-14 15:42:48 +02:00
|
|
|
"converse-roomslist", // Show currently open chat rooms
|
2016-03-16 12:16:32 +01:00
|
|
|
"converse-mam", // XEP-0313 Message Archive Management
|
2016-03-07 17:35:08 +01:00
|
|
|
"converse-muc", // XEP-0045 Multi-user chat
|
2018-02-14 02:36:25 +01:00
|
|
|
"converse-muc-embedded",
|
2016-03-16 12:16:32 +01:00
|
|
|
"converse-vcard", // XEP-0054 VCard-temp
|
2016-03-07 17:35:08 +01:00
|
|
|
"converse-otr", // Off-the-record encryption for one-on-one messages
|
|
|
|
"converse-register", // XEP-0077 In-band registration
|
|
|
|
"converse-ping", // XEP-0199 XMPP Ping
|
|
|
|
"converse-notification",// HTML5 Notifications
|
2016-03-14 17:04:27 +01:00
|
|
|
"converse-minimize", // Allows chat boxes to be minimized
|
2016-04-01 14:46:19 +02:00
|
|
|
"converse-dragresize", // Allows chat boxes to be resized by dragging them
|
2016-03-09 09:14:09 +01:00
|
|
|
"converse-headline", // Support for headline messages
|
2018-02-06 17:53:56 +01:00
|
|
|
"converse-fullscreen"
|
2016-03-07 17:35:08 +01:00
|
|
|
/* END: Removable components */
|
2017-02-27 08:42:17 +01:00
|
|
|
], function (converse) {
|
2017-02-27 08:42:17 +01:00
|
|
|
return converse;
|
2016-03-07 17:35:08 +01:00
|
|
|
});
|
|
|
|
}
|