xmpp.chapril.org-conversejs/src/deps-no-otr.js

25 lines
527 B
JavaScript
Raw Normal View History

define("converse-dependencies", [
"jquery",
2015-10-25 18:49:35 +01:00
"underscore",
2015-09-25 22:57:55 +02:00
"polyfill",
"utils",
"moment_with_locales",
"strophe",
"strophe.disco",
"strophe.ping",
"strophe.rsm",
"strophe.vcard",
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"typeahead"
2015-10-25 18:49:35 +01:00
], function($, _, dummy, utils, moment, Strophe) {
return _.extend({
'underscore': _,
'jQuery': $,
'otr': undefined,
'moment': moment,
'utils': utils
}, Strophe);
});