bigbuffet-rw/app/gabsocial/ready.js

10 lines
212 B
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
'use strict';
export default function ready(loaded) {
if (['interactive', 'complete'].includes(document.readyState)) {
loaded();
} else {
document.addEventListener('DOMContentLoaded', loaded);
}
}