Skip to content

Commit ac6e6b6

Browse files
committed
Fix const/var
1 parent 58ea247 commit ac6e6b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/save-as-script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ app.registerExtension({
2020
const saveButton = document.createElement("button");
2121
saveButton.textContent = "Save as Script";
2222
saveButton.onclick = () => {
23-
const filename = prompt("Save script as:");
23+
var filename = prompt("Save script as:");
2424
if(filename === undefined || filename === null || filename === "") {
2525
return
2626
}

0 commit comments

Comments
 (0)