We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be9574 commit bea97a0Copy full SHA for bea97a0
1 file changed
examples/GUI/gui.js
@@ -121,6 +121,7 @@ function savedb() {
121
var arraybuff = event.data.buffer;
122
var blob = new Blob([arraybuff]);
123
var a = document.createElement("a");
124
+ document.body.appendChild(a);
125
a.href = window.URL.createObjectURL(blob);
126
a.download = "sql.db";
127
a.onclick = function () {
0 commit comments