mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
// eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars
|
|
function onDocumentReady(fn) {
|
|
if (document.readyState != 'loading') {
|
|
fn();
|
|
} else {
|
|
document.addEventListener('DOMContentLoaded', fn);
|
|
}
|
|
}
|