|
@@ -1,5 +1,5 @@
|
|
|
export default function downloadFile(url,fileName,changeState){
|
|
|
- changeState(true);
|
|
|
+ changeState & changeState(true);
|
|
|
let _url = "";
|
|
|
if (url.indexOf("https://view.officeapps.live.com/op/view.aspx?src=") != -1)_url = url.split("https://view.officeapps.live.com/op/view.aspx?src=")[1];
|
|
|
else _url = url;
|
|
@@ -16,7 +16,7 @@ export default function downloadFile(url,fileName,changeState){
|
|
|
document.body.appendChild(link);
|
|
|
link.click();
|
|
|
document.body.removeChild(link);
|
|
|
- changeState(false);
|
|
|
+ changeState & changeState(false);
|
|
|
}
|
|
|
x.send()
|
|
|
|