deps-full.js 461 Bytes
Newer Older
JC Brand's avatar
JC Brand committed
1
define("converse-dependencies", [
2
    "jquery",
JC Brand's avatar
JC Brand committed
3
    "utils",
JC Brand's avatar
JC Brand committed
4
    "otr",
JC Brand's avatar
JC Brand committed
5
    "moment",
JC Brand's avatar
JC Brand committed
6 7
    "strophe",
    "strophe.vcard",
8
    "strophe.disco",
thierrytiti's avatar
thierrytiti committed
9
    "strophe.ping",
10 11 12 13 14 15 16
    "backbone.browserStorage",
    "backbone.overview",
    "jquery.browser",
    "typeahead"
], function($, utils, otr, moment, Strophe) {
    return _.extend({
        'underscore': _,
17
        'jQuery': $,
JC Brand's avatar
JC Brand committed
18
        'otr': otr,
19
        'moment': moment,
JC Brand's avatar
JC Brand committed
20
        'utils': utils
21
    }, Strophe);
JC Brand's avatar
JC Brand committed
22
});