Merge pull request #4162 from matrix-org/t3chguy/double_download
Fix having to decrypt & download in two stepspull/21833/head
commit
ca274dde4a
|
@ -247,6 +247,8 @@ export default createReactClass({
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// This button should actually Download because usercontent/ will try to click itself
|
||||||
|
// but it is not guaranteed between various browsers' settings.
|
||||||
return (
|
return (
|
||||||
<span className="mx_MFileBody">
|
<span className="mx_MFileBody">
|
||||||
<div className="mx_MFileBody_download">
|
<div className="mx_MFileBody_download">
|
||||||
|
@ -290,7 +292,7 @@ export default createReactClass({
|
||||||
src={`${url}?origin=${encodeURIComponent(window.location.origin)}`}
|
src={`${url}?origin=${encodeURIComponent(window.location.origin)}`}
|
||||||
onLoad={onIframeLoad}
|
onLoad={onIframeLoad}
|
||||||
ref={this._iframe}
|
ref={this._iframe}
|
||||||
sandbox="allow-scripts allow-downloads" />
|
sandbox="allow-scripts allow-downloads allow-downloads-without-user-activation" />
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|
|
@ -27,6 +27,7 @@ function remoteRender(event) {
|
||||||
// Don't display scrollbars if the link takes more than one line to display.
|
// Don't display scrollbars if the link takes more than one line to display.
|
||||||
body.style = "margin: 0px; overflow: hidden";
|
body.style = "margin: 0px; overflow: hidden";
|
||||||
body.appendChild(a);
|
body.appendChild(a);
|
||||||
|
a.click(); // try to trigger download automatically
|
||||||
}
|
}
|
||||||
|
|
||||||
function remoteSetTint(event) {
|
function remoteSetTint(event) {
|
||||||
|
|
Loading…
Reference in New Issue