Skip to content

Commit 43b656f

Browse files
committed
stop footer from acting silly when creating pack
1 parent 1e3008a commit 43b656f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/datapack_changes.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ export class DatapackModifier {
123123
}).then((content) => {
124124
var link = document.createElement("a"), url = URL.createObjectURL(content);
125125
link.href = url; link.download = `modified datapack test.zip`;
126+
link.hidden = true;
126127
document.body.appendChild(link);
127128
link.click();
128129
setTimeout(function() {

0 commit comments

Comments
 (0)