* Add content to download anchor

This commit is contained in:
Michaël Van Canneyt 2024-08-28 22:43:05 +02:00
parent 8802cf610b
commit dc418b3fea

View File

@ -749,6 +749,7 @@ Function CreateDownLoadFromFile(const aFileName,aMimeType : string; aParent : TJ
begin
Result:=TJSHTMLAnchorElement(Document.createElement('a'));
Result.AppendChild(aLinkContent);
Result.href:=CreateDataURL(aFileName,aMimetype);
Result.Download:=ExtractFileName(aFileName);
aParent.AppendChild(Result);