Remove messages from initialize; chenge when token login happens

This commit is contained in:
Robbie Antenesse 2019-05-23 15:26:13 -06:00
parent e2c3709ab8
commit f0b146e5fc
1 changed files with 6 additions and 8 deletions

View File

@ -2,24 +2,22 @@ import './main.scss';
import setupListeners from './js/setupListeners';
import { renderAll } from './js/render';
import { generateRandomWords, addMessage, hasToken } from './js/utilities';
import { hasToken } from './js/utilities';
import { loadDictionary } from './js/dictionaryManagement';
import { loadSettings } from './js/settings';
function initialize() {
addMessage('Loading...');
loadDictionary();
loadSettings();
setupListeners();
if (hasToken()) {
import('./js/account/index.js').then(account => {
account.loginWithToken();
});
}
loadDictionary();
loadSettings();
// generateRandomWords(100);
setupListeners();
renderAll();
addMessage('Done Loading!');
// console.log('Rendered!');
}
window.onload = (function (oldLoad) {