CommonJS (research/5)

This commit is contained in:
RainLoop Team 2014-08-25 19:49:01 +04:00
parent 8d73c7b1b2
commit e600e32ddb
132 changed files with 11033 additions and 26380 deletions

View file

@ -1,16 +1,17 @@
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
'use strict';
(function (module) {
(function (module, require) {
'use strict';
var
Globals = {},
window = require('../External/window.js'),
ko = require('../External/ko.js'),
key = require('../External/key.js'),
$html = require('../External/$html.js'),
window = require('window'),
ko = require('ko'),
key = require('key'),
$html = require('$html'),
Enums = require('../Common/Enums.js')
Enums = require('Enums')
;
/**
@ -272,4 +273,4 @@
module.exports = Globals;
}(module));
}(module, require));