1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/app-config.js
2013-04-18 20:34:02 +02:00

28 lines
390 B
JavaScript

var app; // container for the application namespace
(function() {
'use strict';
/**
* Create the application namespace
*/
app = {
model: {},
view: {},
dao: {},
crypto: {},
util: {}
};
/**
* Global app configurations
*/
app.config = {
cloudUrl: 'http://storage.whiteout.io',
symKeySize: 128,
symIvSize: 104,
asymKeySize: 2048,
workerPath: 'js'
};
}());