Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
(function startExtensionHelper() {
webfont.init()
.done(function () {
init(); // register commands if the core loaded properly
if (window.navigator.onLine) {
handleOnline();
} else {
window.addEventListener("online", handleOnline);
}
}).fail(function (err) {
if (window.navigator.onLine) {
setTimeout(startExtensionHelper, delay);
if (delay < MAX_DELAY) {
delay *= 2;
}
} else {
window.addEventListener("online", startExtension);
}