mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 11:13:07 +08:00
726fa6982b
+ small other fixes
57 lines
1.4 KiB
JavaScript
57 lines
1.4 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;
|
|
});
|
|
};
|