FF-e10s bug workaround: do export via iframe
This commit is contained in:
parent
e3e1ecf2d3
commit
e199e1b3c7
|
@ -302,12 +302,31 @@ $('#file-all-styles').onclick = () => {
|
||||||
.then(res => res.blob())
|
.then(res => res.blob())
|
||||||
.then(blob => {
|
.then(blob => {
|
||||||
const objectURL = URL.createObjectURL(blob);
|
const objectURL = URL.createObjectURL(blob);
|
||||||
Object.assign(document.createElement('a'), {
|
let link = $element({
|
||||||
download: generateFileName(),
|
tag:'a',
|
||||||
href: objectURL,
|
href: objectURL,
|
||||||
type: 'application/json',
|
type: 'application/json',
|
||||||
}).dispatchEvent(new MouseEvent('click'));
|
download: generateFileName(),
|
||||||
setTimeout(() => URL.revokeObjectURL(objectURL));
|
});
|
||||||
|
// TODO: remove the fallback when FF multi-process bug is fixed
|
||||||
|
if (!FIREFOX) {
|
||||||
|
link.dispatchEvent(new MouseEvent('click'));
|
||||||
|
setTimeout(() => URL.revokeObjectURL(objectURL));
|
||||||
|
} else {
|
||||||
|
const iframe = document.body.appendChild($element({
|
||||||
|
tag: 'iframe',
|
||||||
|
style: 'width: 0; height: 0; position: fixed; opacity: 0;'.replace(/;/g, '!important;'),
|
||||||
|
}));
|
||||||
|
setTimeout(() => {
|
||||||
|
link = iframe.contentDocument.importNode(link, true);
|
||||||
|
iframe.contentDocument.body.appendChild(link);
|
||||||
|
link.dispatchEvent(new MouseEvent('click'));
|
||||||
|
setTimeout(() => {
|
||||||
|
URL.revokeObjectURL(objectURL);
|
||||||
|
iframe.remove();
|
||||||
|
}, 1000);
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function generateFileName() {
|
function generateFileName() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user