lexiconga-lite/src/index.js

19 lines
462 B
JavaScript
Raw Normal View History

2019-05-02 10:57:56 -06:00
import './main.scss';
2019-05-02 15:45:10 -06:00
import { DEFAULT_DICTIONARY } from './constants';
import setupListeners from './js/setupListeners';
import { renderAll } from './js/render';
2019-05-02 15:45:10 -06:00
2019-05-02 10:57:56 -06:00
function initialize() {
console.log('initializing');
2019-05-02 15:45:10 -06:00
window.currentDictionary = JSON.parse(JSON.stringify(DEFAULT_DICTIONARY));
setupListeners();
renderAll();
2019-05-02 10:57:56 -06:00
}
window.onload = (function (oldLoad) {
return function () {
oldLoad && oldLoad();
initialize();
}
})(window.onload);