mail/src/js/app-config.js

23 lines
315 B
JavaScript
Raw Normal View History

2013-03-13 11:58:46 -04:00
'use strict';
/**
* Create the application namespace
*/
var app = {
model: {},
view: {},
dao: {},
crypto:{},
util: {}
};
/**
* Global app configurations
*/
app.config = {
cloudUrl: 'https://whiteout-io.appspot.com',
symKeySize: 128,
symIvSize: 104,
asymKeySize: 2048,
workerPath: 'js'
};