10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
// Main JavaScript for TeamSync
|
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
console.log('TeamSync dashboard loaded.');
|
|
|
|
// Future interactivity can be added here.
|
|
// For example, handling the click on the 'Record Update' button
|
|
// when it's no longer disabled.
|
|
});
|