mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-05-25 19:40:06 +02:00
20 lines
563 B
JavaScript
20 lines
563 B
JavaScript
|
import '../../main.scss';
|
||
|
import { getDictionary } from './dictionaryManagement';
|
||
|
|
||
|
// import setupListeners, { setupSearchFilters } from './js/setupListeners';
|
||
|
// import { renderAll } from './js/render';
|
||
|
// import { hasToken } from './js/utilities';
|
||
|
// import { loadDictionary } from './js/dictionaryManagement';
|
||
|
// import { loadSettings } from './js/settings';
|
||
|
|
||
|
function initialize() {
|
||
|
getDictionary();
|
||
|
// setupSearchFilters();
|
||
|
}
|
||
|
|
||
|
window.onload = (function (oldLoad) {
|
||
|
return function () {
|
||
|
oldLoad && oldLoad();
|
||
|
initialize();
|
||
|
}
|
||
|
})(window.onload);
|