mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 21:35:58 +00:00
8 lines
233 B
Plaintext
8 lines
233 B
Plaintext
var whenEnvIsLoaded = function(cb) {
|
|
if (typeof document !== 'undefined' && document !== null && !/comp|inter|loaded/.test(document.readyState)) {
|
|
document.addEventListener('DOMContentLoaded', cb);
|
|
} else {
|
|
cb();
|
|
}
|
|
}
|