xmpp.chapril.org-conversejs/src/deps-no-otr.js
JC Brand 0c83ac4524 Explicitly set jQuery as a dependency of converse.js
Also in utils.js and otr.js (this will help reach to goal of having a private
jquery which doesn't pollute the global $ var).
2014-10-06 20:23:59 +02:00

22 lines
403 B
JavaScript

define("converse-dependencies", [
"jquery",
"moment",
"locales",
"backbone.browserStorage",
"backbone.overview",
"jquery.browser",
"typeahead",
"utils",
"strophe",
"strophe.muc",
"strophe.roster",
"strophe.vcard",
"strophe.disco"
], function($, moment) {
return {
'jQuery': $,
'otr': undefined,
'moment': moment
};
});