6f67e3c721
This cause the error "Mismatched anonymous define" when loading the bundle in Plone. The original reason for adding `start.frag` was to wrap the bundle in a closure to not pollute the global namespace (e.g. overriding global `define` and `require` with Almond`s versions) and secondarily to allow people to load the bundle via require.js. The second usecase should now probably be done via a shim in the require.js config.
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
/** Converse.js
|
|
*
|
|
* An XMPP chat client that runs in the browser.
|
|
*
|
|
* Version: 3.3.4
|
|
*/
|
|
|
|
/* jshint ignore:start */
|
|
(function (root, factory) {
|
|
root.converse = factory();
|
|
}(this, function () {
|
|
//almond, and your modules will be inlined here
|
|
/* jshint ignore:end */
|