mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-05-28 21:10:06 +02:00
14 lines
No EOL
293 B
JavaScript
14 lines
No EOL
293 B
JavaScript
import { renderAll } from './render';
|
|
import setupListeners from './setupListeners';
|
|
import { setupAds } from '../ads';
|
|
|
|
function initialize() {
|
|
setupAds();
|
|
renderAll();
|
|
setupListeners();
|
|
}
|
|
|
|
window.onload = (function (oldLoad) {
|
|
oldLoad && oldLoad();
|
|
initialize();
|
|
})(window.onload); |