mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Fix download saver for Safari 10.1
Safari now finally supports the ‘download’ attribute for the anchor tag, meaning that the download saver works properly.
This commit is contained in:
parent
1e106a8f3d
commit
b37178dda1
@ -33,8 +33,6 @@ DownloadSaver.prototype.save = function(text,method,callback,options) {
|
|||||||
}
|
}
|
||||||
// Set up the link
|
// Set up the link
|
||||||
var link = document.createElement("a");
|
var link = document.createElement("a");
|
||||||
link.setAttribute("target","_blank");
|
|
||||||
link.setAttribute("rel","noopener noreferrer");
|
|
||||||
if(Blob !== undefined) {
|
if(Blob !== undefined) {
|
||||||
var blob = new Blob([text], {type: "text/html"});
|
var blob = new Blob([text], {type: "text/html"});
|
||||||
link.setAttribute("href", URL.createObjectURL(blob));
|
link.setAttribute("href", URL.createObjectURL(blob));
|
||||||
|
Loading…
Reference in New Issue
Block a user