mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-01 12:32:40 +08:00
4cc2207513
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
|
|
|
$html.addClass(Globals.bMobileDevice ? 'mobile' : 'no-mobile');
|
|
|
|
$window.keydown(Utils.killCtrlAandS).keyup(Utils.killCtrlAandS);
|
|
$window.unload(function () {
|
|
Globals.bUnload = true;
|
|
});
|
|
|
|
// export
|
|
window.rl = window.rl || {};
|
|
window.rl.addHook = Plugins.addHook;
|
|
window.rl.settingsGet = Plugins.mainSettingsGet;
|
|
window.rl.remoteRequest = Plugins.remoteRequest;
|
|
window.rl.pluginSettingsGet = Plugins.settingsGet;
|
|
window.rl.addSettingsViewModel = Utils.addSettingsViewModel;
|
|
window.rl.createCommand = Utils.createCommand;
|
|
|
|
window.rl.EmailModel = EmailModel;
|
|
window.rl.Enums = Enums;
|
|
|
|
window['__RLBOOT'] = function (fCall) {
|
|
|
|
// boot
|
|
$(function () {
|
|
|
|
if (window['rainloopTEMPLATES'] && window['rainloopTEMPLATES'][0])
|
|
{
|
|
$('#rl-templates').html(window['rainloopTEMPLATES'][0]);
|
|
|
|
window.setInterval(function () {
|
|
Globals.minuteTick(!Globals.minuteTick());
|
|
}, 1000 * 60);
|
|
|
|
window.setInterval(function () {
|
|
Globals.fiveMinuteTick(!Globals.fiveMinuteTick());
|
|
}, 1000 * 60 * 5);
|
|
|
|
_.delay(function () {
|
|
window['rainloopAppData'] = {};
|
|
window['rainloopI18N'] = {};
|
|
window['rainloopTEMPLATES'] = {};
|
|
|
|
kn.setBoot(RL).bootstart();
|
|
|
|
$html.addClass('rl-started');
|
|
|
|
}, 50);
|
|
}
|
|
else
|
|
{
|
|
fCall(false);
|
|
}
|
|
|
|
window['__RLBOOT'] = null;
|
|
});
|
|
};
|