Replace document.origin with window.location.origin
document.origin is not a thing on firefox
This commit is contained in:
parent
e26c3f3dc9
commit
53528f338a
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ module.exports = React.createClass({
|
||||||
if (this.context.appConfig && this.context.appConfig.cross_origin_renderer_url) {
|
if (this.context.appConfig && this.context.appConfig.cross_origin_renderer_url) {
|
||||||
renderer_url = this.context.appConfig.cross_origin_renderer_url;
|
renderer_url = this.context.appConfig.cross_origin_renderer_url;
|
||||||
}
|
}
|
||||||
renderer_url += "?origin=" + encodeURIComponent(document.origin);
|
renderer_url += "?origin=" + encodeURIComponent(window.location.origin);
|
||||||
return (
|
return (
|
||||||
<span className="mx_MFileBody">
|
<span className="mx_MFileBody">
|
||||||
<div className="mx_MFileBody_download">
|
<div className="mx_MFileBody_download">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue