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.
|
|
|
|
*/
|
2018-08-10 14:09:21 +02:00
|
|
|
"converse-autocomplete",
|
2018-03-29 16:12:19 +02:00
|
|
|
"converse-bookmarks", // XEP-0048 Bookmarks
|
2018-06-06 11:04:23 +02:00
|
|
|
"converse-caps", // XEP-0115 Entity Capabilities
|
2018-03-29 16:12:19 +02:00
|
|
|
"converse-chatview", // Renders standalone chat boxes for single user chat
|
|
|
|
"converse-controlbox", // The control box
|
|
|
|
"converse-dragresize", // Allows chat boxes to be resized by dragging them
|
2018-05-03 17:01:17 +02:00
|
|
|
"converse-embedded",
|
2018-03-29 16:12:19 +02:00
|
|
|
"converse-fullscreen",
|
2018-06-06 11:07:59 +02:00
|
|
|
"converse-push", // XEP-0357 Push Notifications
|
2018-03-29 16:12:19 +02:00
|
|
|
"converse-headline", // Support for headline messages
|
|
|
|
"converse-mam", // XEP-0313 Message Archive Management
|
|
|
|
"converse-minimize", // Allows chat boxes to be minimized
|
|
|
|
"converse-muc", // XEP-0045 Multi-user chat
|
|
|
|
"converse-muc-views", // Views related to MUC
|
|
|
|
"converse-notification", // HTML5 Notifications
|
2018-05-12 19:37:44 +02:00
|
|
|
"converse-omemo",
|
2018-03-29 16:12:19 +02:00
|
|
|
"converse-ping", // XEP-0199 XMPP Ping
|
|
|
|
"converse-register", // XEP-0077 In-band registration
|
|
|
|
"converse-roomslist", // Show currently open chat rooms
|
2018-06-12 17:01:10 +02:00
|
|
|
"converse-roster",
|
2018-03-29 16:12:19 +02:00
|
|
|
"converse-vcard", // XEP-0054 VCard-temp
|
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
|
|
|
});
|
|
|
|
}
|