2017-05-11 02:26:06 -07:00
|
|
|
import main from '../mastodon/main';
|
|
|
|
|
2017-05-24 08:55:00 -07:00
|
|
|
const needsBasePolyfills = !(
|
|
|
|
window.Intl &&
|
|
|
|
Object.assign &&
|
|
|
|
Number.isNaN &&
|
|
|
|
window.Symbol &&
|
|
|
|
Array.prototype.includes
|
|
|
|
);
|
|
|
|
|
|
|
|
const needsExtraPolyfills = !(
|
|
|
|
window.IntersectionObserver &&
|
|
|
|
window.requestIdleCallback
|
|
|
|
);
|
|
|
|
|
|
|
|
// Latest version of Firefox and Safari do not have IntersectionObserver.
|
|
|
|
// Edge does not have requestIdleCallback.
|
|
|
|
// This avoids shipping them all the polyfills.
|
|
|
|
if (needsBasePolyfills) {
|
|
|
|
Promise.all([
|
|
|
|
import('../mastodon/base_polyfills'),
|
|
|
|
import('../mastodon/extra_polyfills'),
|
|
|
|
]).then(main).catch(e => {
|
|
|
|
console.error(e); // eslint-disable-line no-console
|
|
|
|
});
|
|
|
|
} else if (needsExtraPolyfills) {
|
|
|
|
import('../mastodon/extra_polyfills').then(main).catch(e => {
|
2017-05-20 08:31:47 -07:00
|
|
|
console.error(e); // eslint-disable-line no-console
|
2017-05-16 17:59:43 -07:00
|
|
|
});
|
2017-05-11 02:26:06 -07:00
|
|
|
} else {
|
|
|
|
main();
|
2017-05-02 17:04:16 -07:00
|
|
|
}
|