2013-12-30 20:27:57 +01:00
|
|
|
config = {
|
2014-05-06 09:56:04 +02:00
|
|
|
baseUrl: '.',
|
2013-07-29 22:34:33 +02:00
|
|
|
paths: {
|
2014-04-19 01:52:44 +02:00
|
|
|
"jquery": "components/jquery/dist/jquery",
|
|
|
|
"jquery.browser": "components/jquery.browser/dist/jquery.browser",
|
2014-07-06 15:56:44 +02:00
|
|
|
"jquery.easing": "components/jquery-easing-original/jquery.easing.1.3", // XXX: Only required for https://conversejs.org website
|
|
|
|
"bootstrap": "components/bootstrap/dist/js/bootstrap", // XXX: Only required for https://conversejs.org website
|
2014-01-22 23:53:50 +01:00
|
|
|
"locales": "locale/locales",
|
2013-07-29 22:34:33 +02:00
|
|
|
"underscore": "components/underscore/underscore",
|
|
|
|
"backbone": "components/backbone/backbone",
|
2014-06-30 18:53:58 +02:00
|
|
|
"backbone.browserStorage": "components/backbone.browserStorage/backbone.browserStorage",
|
2014-06-01 15:28:52 +02:00
|
|
|
"backbone.overview": "components/backbone.overview/backbone.overview",
|
2013-12-30 20:27:57 +01:00
|
|
|
"text": 'components/requirejs-text/text',
|
2014-03-14 19:16:31 +01:00
|
|
|
"tpl": 'components/requirejs-tpl-jcbrand/tpl',
|
2013-12-30 20:27:57 +01:00
|
|
|
"converse-templates": "src/templates",
|
2013-07-29 22:34:33 +02:00
|
|
|
"strophe": "components/strophe/strophe",
|
|
|
|
"strophe.muc": "components/strophe.muc/index",
|
|
|
|
"strophe.roster": "components/strophe.roster/index",
|
|
|
|
"strophe.vcard": "components/strophe.vcard/index",
|
2013-08-16 15:48:23 +02:00
|
|
|
"strophe.disco": "components/strophe.disco/index",
|
2013-11-13 07:16:53 +01:00
|
|
|
"salsa20": "components/otr/build/dep/salsa20",
|
2014-08-04 23:00:01 +02:00
|
|
|
"bigint": "src/bigint",
|
2013-11-13 07:16:53 +01:00
|
|
|
"crypto.core": "components/otr/vendor/cryptojs/core",
|
|
|
|
"crypto.enc-base64": "components/otr/vendor/cryptojs/enc-base64",
|
2014-02-28 03:04:52 +01:00
|
|
|
"crypto.md5": "components/crypto-js-evanvosberg/src/md5",
|
|
|
|
"crypto.evpkdf": "components/crypto-js-evanvosberg/src/evpkdf",
|
2013-11-13 07:16:53 +01:00
|
|
|
"crypto.cipher-core": "components/otr/vendor/cryptojs/cipher-core",
|
|
|
|
"crypto.aes": "components/otr/vendor/cryptojs/aes",
|
|
|
|
"crypto.sha1": "components/otr/vendor/cryptojs/sha1",
|
|
|
|
"crypto.sha256": "components/otr/vendor/cryptojs/sha256",
|
|
|
|
"crypto.hmac": "components/otr/vendor/cryptojs/hmac",
|
|
|
|
"crypto.pad-nopadding": "components/otr/vendor/cryptojs/pad-nopadding",
|
|
|
|
"crypto.mode-ctr": "components/otr/vendor/cryptojs/mode-ctr",
|
2013-11-17 15:55:38 +01:00
|
|
|
"crypto": "src/crypto",
|
2013-10-03 10:18:07 +02:00
|
|
|
"eventemitter": "components/otr/build/dep/eventemitter",
|
2014-04-19 01:30:48 +02:00
|
|
|
"moment": "components/momentjs/moment",
|
2013-11-17 15:55:38 +01:00
|
|
|
"otr": "components/otr/build/otr",
|
2014-07-06 16:10:27 +02:00
|
|
|
"converse-dependencies": "src/deps-website"
|
2013-07-29 22:34:33 +02:00
|
|
|
},
|
|
|
|
|
2013-12-30 20:27:57 +01:00
|
|
|
tpl: {
|
|
|
|
// Use Mustache style syntax for variable interpolation
|
|
|
|
templateSettings: {
|
|
|
|
evaluate : /\{\[([\s\S]+?)\]\}/g,
|
|
|
|
interpolate : /\{\{([\s\S]+?)\}\}/g
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-07-29 22:34:33 +02:00
|
|
|
// define module dependencies for modules not using define
|
|
|
|
shim: {
|
|
|
|
'backbone': {
|
|
|
|
//These script dependencies should be loaded before loading
|
|
|
|
//backbone.js
|
|
|
|
deps: [
|
|
|
|
'underscore',
|
|
|
|
'jquery'
|
|
|
|
],
|
|
|
|
//Once loaded, use the global 'Backbone' as the
|
|
|
|
//module value.
|
|
|
|
exports: 'Backbone'
|
|
|
|
},
|
2014-03-04 21:42:21 +01:00
|
|
|
'underscore': { exports: '_' },
|
2014-07-06 15:56:44 +02:00
|
|
|
'bootstrap': { deps: ['jquery'] },
|
2014-03-04 21:42:21 +01:00
|
|
|
'crypto.aes': { deps: ['crypto.cipher-core'] },
|
|
|
|
'crypto.cipher-core': { deps: ['crypto.enc-base64', 'crypto.evpkdf'] },
|
|
|
|
'crypto.enc-base64': { deps: ['crypto.core'] },
|
|
|
|
'crypto.evpkdf': { deps: ['crypto.md5'] },
|
|
|
|
'crypto.hmac': { deps: ['crypto.core'] },
|
|
|
|
'crypto.md5': { deps: ['crypto.core'] },
|
|
|
|
'crypto.mode-ctr': { deps: ['crypto.cipher-core'] },
|
|
|
|
'crypto.pad-nopadding': { deps: ['crypto.cipher-core'] },
|
|
|
|
'crypto.sha1': { deps: ['crypto.core'] },
|
|
|
|
'crypto.sha256': { deps: ['crypto.core'] },
|
2014-08-04 23:04:39 +02:00
|
|
|
'bigint': { deps: ['crypto'] },
|
2014-04-24 07:58:35 +02:00
|
|
|
'jquery.browser': { deps: ['jquery'] },
|
2014-07-06 15:56:44 +02:00
|
|
|
'jquery.easing': { deps: ['jquery'] },
|
2014-03-04 21:42:21 +01:00
|
|
|
'strophe': { deps: ['jquery'] },
|
|
|
|
'strophe.disco': { deps: ['strophe'] },
|
|
|
|
'strophe.muc': { deps: ['strophe', 'jquery'] },
|
|
|
|
'strophe.roster': { deps: ['strophe'] },
|
|
|
|
'strophe.vcard': { deps: ['strophe'] }
|
2013-07-29 22:34:33 +02:00
|
|
|
}
|
2013-12-30 20:27:57 +01:00
|
|
|
};
|
2013-07-29 22:34:33 +02:00
|
|
|
|
2014-07-06 15:56:44 +02:00
|
|
|
var initializeEasing = function () {
|
|
|
|
/* XXX: This function initializes jquery.easing for the https://conversejs.org
|
|
|
|
* website. This code is only useful in the context of the converse.js
|
|
|
|
* website and converse.js itself is not dependent on it.
|
|
|
|
*/
|
|
|
|
$(window).scroll(function() {
|
|
|
|
if ($(".navbar").offset().top > 50) {
|
|
|
|
$(".navbar-fixed-top").addClass("top-nav-collapse");
|
|
|
|
} else {
|
|
|
|
$(".navbar-fixed-top").removeClass("top-nav-collapse");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
//jQuery for page scrolling feature - requires jQuery Easing plugin
|
|
|
|
$('.page-scroll a').bind('click', function(event) {
|
|
|
|
var $anchor = $(this);
|
|
|
|
$('html, body').stop().animate({
|
|
|
|
scrollTop: $($anchor.attr('href')).offset().top
|
|
|
|
}, 700, 'easeInOutExpo');
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-12-30 20:27:57 +01:00
|
|
|
if (typeof(require) !== 'undefined') {
|
|
|
|
require.config(config);
|
2014-07-06 15:56:44 +02:00
|
|
|
require(["jquery", "converse"], function($, converse) {
|
2013-12-30 20:27:57 +01:00
|
|
|
window.converse = converse;
|
2014-07-06 15:56:44 +02:00
|
|
|
initializeEasing(); // Only for https://conversejs.org website
|
2013-12-30 20:27:57 +01:00
|
|
|
});
|
|
|
|
}
|