We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3008a commit 43b656fCopy full SHA for 43b656f
src/datapack_changes.ts
@@ -123,6 +123,7 @@ export class DatapackModifier {
123
}).then((content) => {
124
var link = document.createElement("a"), url = URL.createObjectURL(content);
125
link.href = url; link.download = `modified datapack test.zip`;
126
+ link.hidden = true;
127
document.body.appendChild(link);
128
link.click();
129
setTimeout(function() {
0 commit comments