mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
CommonJS (research/5)
This commit is contained in:
parent
8d73c7b1b2
commit
e600e32ddb
132 changed files with 11033 additions and 26380 deletions
|
|
@ -1,24 +1,25 @@
|
|||
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||||
'use strict';
|
||||
|
||||
(function (module) {
|
||||
(function (module, require) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var
|
||||
Utils = {},
|
||||
|
||||
$ = require('../External/jquery.js'),
|
||||
_ = require('../External/underscore.js'),
|
||||
ko = require('../External/ko.js'),
|
||||
window = require('../External/window.js'),
|
||||
$window = require('../External/$window.js'),
|
||||
$html = require('../External/$html.js'),
|
||||
$div = require('../External/$div.js'),
|
||||
$doc = require('../External/$doc.js'),
|
||||
NotificationClass = require('../External/NotificationClass.js'),
|
||||
$ = require('$'),
|
||||
_ = require('_'),
|
||||
ko = require('ko'),
|
||||
window = require('window'),
|
||||
$window = require('$window'),
|
||||
$html = require('$html'),
|
||||
$div = require('$div'),
|
||||
$doc = require('$doc'),
|
||||
NotificationClass = require('NotificationClass'),
|
||||
|
||||
Enums = require('./Enums.js'),
|
||||
Consts = require('./Consts.js'),
|
||||
Globals = require('./Globals.js')
|
||||
Enums = require('Enums'),
|
||||
Consts = require('Consts'),
|
||||
Globals = require('Globals')
|
||||
;
|
||||
|
||||
Utils.trim = $.trim;
|
||||
|
|
@ -2045,4 +2046,4 @@
|
|||
|
||||
module.exports = Utils;
|
||||
|
||||
}(module));
|
||||
}(module, require));
|
||||
Loading…
Add table
Add a link
Reference in a new issue