mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Don't use webpack on boot.js
This commit is contained in:
parent
b837013cfb
commit
fcaa2fd6de
11 changed files with 167 additions and 388 deletions
|
|
@ -98,8 +98,8 @@ class AbstractApp extends AbstractBoot {
|
|||
}
|
||||
|
||||
clearClientSideToken() {
|
||||
if (window.__rlah_clear) {
|
||||
__rlah_clear();
|
||||
if (RainLoop.hash.clear) {
|
||||
RainLoop.hash.clear();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -107,8 +107,8 @@ class AbstractApp extends AbstractBoot {
|
|||
* @param {string} token
|
||||
*/
|
||||
setClientSideToken(token) {
|
||||
if (window.__rlah_set) {
|
||||
__rlah_set(token);
|
||||
if (RainLoop.hash.set) {
|
||||
RainLoop.hash.set(token);
|
||||
|
||||
Settings.settingsSet('AuthAccountHash', token);
|
||||
populateAuthSuffix();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue