xmpp.chapril.org-conversejs/src/deps-no-otr.js
thierrytiti fb589398ad XEP-0199: XMPP Ping
Use modified StropheJS ping plugin (AMD support)
Add Ping functionality
Add Pong handler

Fix to issue #144:
2015-05-27 18:14:58 +02:00

22 lines
451 B
JavaScript

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