converse-embedded.js 799 B

1234567891011121314151617181920
  1. /*global define */
  2. if (typeof define !== 'undefined') {
  3. // The section below determines which plugins will be included in a build
  4. define([
  5. "converse-core",
  6. /* START: Removable components
  7. * --------------------
  8. * Any of the following components may be removed if they're not needed.
  9. */
  10. "converse-chatview", // Renders standalone chat boxes for single user chat
  11. "converse-mam", // XEP-0313 Message Archive Management
  12. "converse-muc", // XEP-0045 Multi-user chat
  13. "converse-muc-embedded",
  14. "converse-ping", // XEP-0199 XMPP Ping
  15. "converse-notification",// HTML5 Notifications
  16. /* END: Removable components */
  17. ], function (converse) {
  18. return converse;
  19. });
  20. }