Extract polyfill loading into single module (#3421)
This commit is contained in:
parent
76fa9d2488
commit
b42bdd80e8
3 changed files with 44 additions and 39 deletions
|
@ -3,6 +3,7 @@ import { getLocale } from 'mastodon/locales';
|
|||
import { length } from 'stringz';
|
||||
import IntlRelativeFormat from 'intl-relativeformat';
|
||||
import { delegate } from 'rails-ujs';
|
||||
import loadPolyfills from '../mastodon/load_polyfills';
|
||||
|
||||
require.context('../images/', true);
|
||||
|
||||
|
@ -85,12 +86,6 @@ function main() {
|
|||
});
|
||||
}
|
||||
|
||||
if (!window.Intl) {
|
||||
import(/* webpackChunkName: "base_polyfills" */ 'mastodon/base_polyfills').then(() => {
|
||||
main();
|
||||
}).catch(error => {
|
||||
console.log(error); // eslint-disable-line no-console
|
||||
});
|
||||
} else {
|
||||
main();
|
||||
}
|
||||
loadPolyfills().then(main).catch(error => {
|
||||
console.log(error); // eslint-disable-line no-console
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue