mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 00:29:19 +05:30
19 lines
611 B
JavaScript
19 lines
611 B
JavaScript
import 'core-js/stable';
|
|
import 'regenerator-runtime/runtime';
|
|
import 'url-search-params-polyfill';
|
|
import 'whatwg-fetch';
|
|
import { shim as shimPromiseFinaly } from 'promise.prototype.finally';
|
|
import { polyfill as rafPolyfill } from 'raf';
|
|
|
|
rafPolyfill();
|
|
shimPromiseFinaly();
|
|
|
|
// allow :active styles in mobile Safary
|
|
document.addEventListener('touchstart', () => {}, true);
|
|
|
|
// disable mobile safary back-forward cache
|
|
// http://stackoverflow.com/questions/8788802/prevent-safari-loading-from-cache-when-back-button-is-clicked
|
|
window.onpageshow = event => {
|
|
event.persisted && window.location.reload();
|
|
};
|