firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
document.addEventListener("DOMContentLoaded", function () {
var mainTextarea = document.getElementById('mainTextarea');
var editorTextarea = document.getElementById('editorTextarea');
// If exist then copy from main_textarea to editor_testarea
if (mainTextarea && editorTextarea) {
editorTextarea.value = mainTextarea.value;
}
// Hide the original textarea
if (mainTextarea) {
mainTextarea.style.display = 'none';
}
});