commit 12/10/2025

This commit is contained in:
2025-12-10 10:59:22 +07:00
parent 802cf940a9
commit cbca8cd43d
10 changed files with 403 additions and 4 deletions

View File

@@ -592,6 +592,17 @@ $(document).ready(function () {
}
});
})
$('#ttsgenerator').click(() => {
sidemenu.hide();
$('#content').load('tts.html', function (response, status, xhr) {
if (status === "success") {
console.log("TTS Generator content loaded successfully");
// pindah ke ttsgenerator.js
} else {
console.error("Error loading TTS Generator content:", xhr.status, xhr.statusText);
}
});
});
$('#filemanagement').click(() => {
sidemenu.hide();
$('#content').load('filemanagement.html', function (response, status, xhr) {