xmpp.chapril.org-conversejs/src/deps-full.js
JC Brand 9eba9989dc OTR stuff has been moved to a component/plugin in src/converse-otr.js
Also fixed errors with converse obj not being defined in the MUC plugin.
2016-02-16 07:47:16 +00:00

24 lines
501 B
JavaScript

define("converse-dependencies", [
"jquery",
"underscore",
"polyfill",
"utils",
"moment_with_locales",
"strophe",
"strophe.disco",
"strophe.ping",
"strophe.rsm",
"strophe.vcard",
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"typeahead"
], function($, _, dummy, utils, moment, Strophe) {
return _.extend({
'underscore': _,
'jQuery': $,
'moment': moment,
'utils': utils
}, Strophe);
});