Update custom.html

master
xxDUxx 2022-12-15 02:56:46 +01:00 committed by GitHub
parent 2bb6466d10
commit 65870e20a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 9 deletions

View File

@ -56,17 +56,19 @@
}
if (n>0) {
Util.readStorage("contourclock.json", fileContents => {
console.log(fileContents);
try {
info = JSON.parse(fileContents);
console.print(fileContents);
console.print(info.files);
} catch (e) {
console.error(e);
}
console.log(fileContents);
try {
info = JSON.parse(fileContents);
console.print(fileContents);
console.print(info.files);
} catch (e) {
console.error(e);
}
}
//sendCustomizedApp({storage:fonts});
} else
} else {
alert("Please select at least one Font!");
}
});
document.forms[0].appendChild(btn);
</script>