admin-portal/tech/tabs/04-schema/07_javascript.js
Frederico Falcao f2a6525224 init
2025-05-30 10:46:17 +01:00

15 lines
480 B
JavaScript

document.addEventListener('DOMContentLoaded', () => {
const editor = CodeMirror.fromTextArea(document.getElementById('sqlSchemaEditor'), {
mode: 'text/x-sql',
theme: 'material',
lineNumbers: false,
indentUnit: 2,
tabSize: 2,
});
// Force CodeMirror to refresh when the tab is shown
const schemaTab = document.querySelector('button[data-bs-target="#schema"]');
schemaTab.addEventListener('shown.bs.tab', function () {
editor.refresh();
});
});