mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 00:17:03 +03:00
Uploading and preparing the repository to the dev version.
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
This commit is contained in:
parent
afad45137e
commit
4cc2207513
846 changed files with 99453 additions and 2123 deletions
64
vendors/rl/rl.js
vendored
Normal file
64
vendors/rl/rl.js
vendored
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
/*! RainLoop Top Driver v1.0 (c) 2013 RainLoop Team; Licensed under MIT */
|
||||
(function (window, JSON) {
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
*/
|
||||
function CRLTopDriver() {}
|
||||
|
||||
CRLTopDriver.prototype.s = window['sessionStorage'];
|
||||
|
||||
CRLTopDriver.prototype.t = window['top'] || window;
|
||||
|
||||
/**
|
||||
* @return {(string|null)}
|
||||
*/
|
||||
CRLTopDriver.prototype['getHash'] = function() {
|
||||
var mR = null;
|
||||
if (this.s) {
|
||||
mR = this.s['getItem']('__rlA') || null;
|
||||
} else if (this.t) {
|
||||
var mData = this.t['name'] && JSON && '{' === this.t['name']['toString']()['substr'](0, 1) ? JSON['parse'](this.t['name']['toString']()) : null;
|
||||
mR = mData ? (mData['__rlA'] || null) : null;
|
||||
}
|
||||
return mR;
|
||||
};
|
||||
|
||||
CRLTopDriver.prototype['setHash'] = function() {
|
||||
var mData = window['rainloopAppData'], mRes = null;
|
||||
if (this.s) {
|
||||
this.s['setItem']('__rlA', mData && mData['AuthAccountHash'] ? mData['AuthAccountHash'] : '');
|
||||
} else if (this.t && JSON) {
|
||||
mRes = {};
|
||||
mRes['__rlA'] = mData && mData['AuthAccountHash'] ? mData['AuthAccountHash'] : '';
|
||||
this.t['name'] = JSON['stringify'](mRes);
|
||||
}
|
||||
};
|
||||
|
||||
CRLTopDriver.prototype['clearHash'] = function() {
|
||||
if (this.s) {
|
||||
this.s['setItem']('__rlA', '');
|
||||
} else if (this.t) {
|
||||
this.t['name'] = '';
|
||||
}
|
||||
};
|
||||
|
||||
window['_rlhh'] = new CRLTopDriver();
|
||||
|
||||
/**
|
||||
* @returns {(string|null)}
|
||||
*/
|
||||
window['__rlah'] = function () {
|
||||
return window['_rlhh'] ? window['_rlhh']['getHash']() : null;
|
||||
};
|
||||
window['__rlah_set'] = function () {
|
||||
if (window['_rlhh']) {
|
||||
window['_rlhh']['setHash']();
|
||||
}
|
||||
};
|
||||
window['__rlah_clear'] = function () {
|
||||
if (window['_rlhh']) {
|
||||
window['_rlhh']['clearHash']();
|
||||
}
|
||||
};
|
||||
}(window, window.JSON));
|
||||
Loading…
Add table
Add a link
Reference in a new issue