cpuprogramme / cpu-15

Dotclear theme for radio show C.P.U.
2 stars 1 forks source link

main(); runs too early, before some elements are constructed #22

Closed dascritch closed 6 years ago

dascritch commented 6 years ago

should be

if ( (document.body) && (document.getElementById('header-control')) ) {
    main();
} else {
    window.addEventListener('DOMContentLoaded', main);
}