mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00
14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
const onLoaded = () => {
|
|
// Nothing for now
|
|
};
|
|
|
|
if (['interactive', 'complete'].indexOf(document.readyState) !== -1) {
|
|
onLoaded();
|
|
} else {
|
|
document.addEventListener('DOMContentLoaded', onLoaded);
|
|
}
|
|
})();
|